aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2024-03-27 12:57:30 +0100
committerMax Audron <audron@cocaine.farm>2024-03-27 12:57:30 +0100
commit3a88527328952ddffef0bf228f0832e81fcfdf19 (patch)
tree8de19b16c5038537a714d2bfe34892d20e6d5626 /Cargo.toml
parentrelease 1.0.4 (diff)
implement basic cloning and updating with gix
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 13 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9f8da95..93ea5be 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,14 +12,24 @@ repository = "https://gitlab.com/cocainefarm/gtree"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
futures = "0.3"
-itertools = "0.10"
+itertools = "0.11"
num_cpus = "1"
once_cell = "1"
-gitlab = "0.1600"
+gitlab = "0.1605"
graphql_client = "0.11"
-git2 = { version = "0.17" }
+gix = { version = "0.58", default-features = false, features = [
+ "status"
+ , "index"
+ , "credentials"
+ , "blocking-http-transport-reqwest-rust-tls"
+ , "worktree-mutation"
+ , "max-performance-safe"
+ , "parallel"
+] }
+gix-worktree-state = "*"
+gix-index = "*"
walkdir = "2"
@@ -49,6 +59,3 @@ ansi_term = "0.12"
[features]
default = []
-
-vendored-openssl = [ "git2/vendored-openssl" ]
-vendored-libgit2 = [ "git2/vendored-libgit2" ]