Remove unnecessary gix features from watcher and add them to tauri

This commit is contained in:
Sebastian Thiel 2024-08-29 07:24:07 +02:00
parent b2cdc37d41
commit 8c7159d906
No known key found for this signature in database
GPG Key ID: 9CB5EE7895E8268B
2 changed files with 2 additions and 6 deletions

View File

@ -29,7 +29,7 @@ dirs = "5.0.1"
fslock.workspace = true
futures.workspace = true
git2.workspace = true
gix = { workspace = true, features = ["max-performance", "blocking-http-transport-curl"] }
gix = { workspace = true, features = ["max-performance", "blocking-http-transport-curl", "worktree-mutation"] }
once_cell = "1.19"
reqwest = { version = "0.12.4", features = ["json"] }
serde.workspace = true

View File

@ -17,11 +17,7 @@ anyhow = "1.0.86"
tokio = { workspace = true, features = ["macros"] }
tokio-util = "0.7.11"
tracing.workspace = true
gix = { workspace = true, features = [
"excludes",
"blocking-network-client",
"worktree-mutation",
] }
gix = { workspace = true, features = ["excludes"] }
gitbutler-command-context.workspace = true
gitbutler-project.workspace = true
gitbutler-user.workspace = true