gitbutler/crates/gitbutler-watcher/Cargo.toml
Sebastian Thiel 184f557897
move debouncer code into its own crate
That way the public API that isn't used doesn't have to be `dead_code`.

Also adjust CI to run the tests we have in the debouncer crate.
Previously, it might not have run them though.
2024-06-16 09:38:24 +02:00

29 lines
550 B
TOML

[package]
name = "gitbutler-watcher"
version = "0.0.0"
edition = "2021"
publish = false
[lib]
test = false
doctest = false
[dependencies]
gitbutler-core.workspace = true
thiserror.workspace = true
anyhow = "1.0.86"
futures = "0.3.30"
tokio = { workspace = true, features = [ "macros" ] }
tokio-util = "0.7.11"
tracing = "0.1.40"
gix = { workspace = true, features = ["excludes"] }
backoff = "0.4.0"
notify = { version = "6.0.1" }
gitbutler-notify-debouncer.path = "vendor/debouncer"
[lints.clippy]
all = "deny"
perf = "deny"
correctness = "deny"