aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml9
-rw-r--r--flake.nix9
3 files changed, 17 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cf9426a..9eedc59 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -570,7 +570,7 @@ dependencies = [
[[package]]
name = "gtree"
-version = "0.1.0"
+version = "1.0.0"
dependencies = [
"ansi_term",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index 7884d23..2dce05e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,12 @@
[package]
name = "gtree"
-version = "0.1.0"
+description = "A tool to clone and pull whole group trees from a git forge, properly organized on disk."
+version = "1.0.0"
edition = "2021"
+authors = ["Max Audron <audron@cocaine.farm>"]
+license = "ISC"
+homepage = "https://gitlab.com/cocainefarm/gtree"
+repository = "https://gitlab.com/cocainefarm/gtree"
[dependencies]
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
@@ -18,7 +23,7 @@ git2 = { version = "0.14" }
walkdir = "2"
-async-trait = "*"
+async-trait = "0.1"
# Arg parsing and config
clap = { version = "3", features = ["derive"] }
diff --git a/flake.nix b/flake.nix
index 851c72c..3018d7c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,4 +1,13 @@
{
+ nixConfig = {
+ substituters =
+ [ "https://cache.nixos.org/" "https://nix-community.cachix.org" "https://nix.cache.vapor.systems" ];
+ trusted-public-keys = [
+ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
+ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
+ "nix.cache.vapor.systems-1:OjV+eZuOK+im1n8tuwHdT+9hkQVoJORdX96FvWcMABk="
+ ];
+ };
inputs = {
nixpkgs.url = "github:nixos/nixpkgs";
rust-overlay = {