gitbutler/crates/gitbutler-watcher/Cargo.toml
Sebastian Thiel b03ba56288
Merge pull request #4784 from Byron/fix-features
Remove unnecessary `gix` features from `watcher` and add them to `tauri`
2024-08-29 09:50:53 +02:00

37 lines
865 B
TOML

[package]
name = "gitbutler-watcher"
version = "0.0.0"
edition = "2021"
publish = false
[lib]
test = false
doctest = false
[dependencies]
gitbutler-branch-actions.workspace = true
gitbutler-sync.workspace = true
gitbutler-oplog.workspace = true
thiserror.workspace = true
anyhow = "1.0.86"
tokio = { workspace = true, features = ["macros"] }
tokio-util = "0.7.11"
tracing.workspace = true
gix = { workspace = true, features = ["excludes"] }
gitbutler-command-context.workspace = true
gitbutler-project.workspace = true
gitbutler-diff.workspace = true
gitbutler-user.workspace = true
gitbutler-reference.workspace = true
gitbutler-error.workspace = true
gitbutler-operating-modes.workspace = true
backoff = "0.4.0"
notify = { version = "6.0.1" }
gitbutler-notify-debouncer.path = "vendor/debouncer"
[lints.clippy]
all = "deny"
perf = "deny"
correctness = "deny"