2024-04-17 20:11:24 +03:00
|
|
|
[package]
|
|
|
|
name = "gitbutler-watcher"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
2024-06-02 16:14:47 +03:00
|
|
|
test = false
|
2024-04-17 20:11:24 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gitbutler-core.workspace = true
|
2024-07-07 14:32:35 +03:00
|
|
|
gitbutler-branch.workspace = true
|
2024-07-07 20:22:41 +03:00
|
|
|
gitbutler-sync.workspace = true
|
2024-07-07 21:00:01 +03:00
|
|
|
gitbutler-oplog.workspace = true
|
2024-04-17 20:11:24 +03:00
|
|
|
thiserror.workspace = true
|
2024-06-01 18:38:43 +03:00
|
|
|
anyhow = "1.0.86"
|
2024-04-17 20:11:24 +03:00
|
|
|
futures = "0.3.30"
|
2024-04-18 10:25:40 +03:00
|
|
|
tokio = { workspace = true, features = [ "macros" ] }
|
2024-06-01 18:38:43 +03:00
|
|
|
tokio-util = "0.7.11"
|
2024-04-17 20:11:24 +03:00
|
|
|
tracing = "0.1.40"
|
2024-05-23 12:13:30 +03:00
|
|
|
gix = { workspace = true, features = ["excludes"] }
|
2024-04-17 20:11:24 +03:00
|
|
|
|
|
|
|
backoff = "0.4.0"
|
|
|
|
notify = { version = "6.0.1" }
|
2024-06-02 16:14:47 +03:00
|
|
|
gitbutler-notify-debouncer.path = "vendor/debouncer"
|
2024-05-24 14:30:21 +03:00
|
|
|
|
2024-04-17 20:11:24 +03:00
|
|
|
[lints.clippy]
|
|
|
|
all = "deny"
|
|
|
|
perf = "deny"
|
|
|
|
correctness = "deny"
|