2024-04-17 20:11:24 +03:00
|
|
|
[package]
|
|
|
|
name = "gitbutler-watcher"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gitbutler-core.workspace = true
|
|
|
|
thiserror.workspace = true
|
2024-05-01 18:11:55 +03:00
|
|
|
anyhow = "1.0.82"
|
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-04-17 20:11:24 +03:00
|
|
|
tokio-util = "0.7.10"
|
|
|
|
tracing = "0.1.40"
|
2024-05-04 20:20:22 +03:00
|
|
|
git2.workspace = true
|
2024-04-17 20:11:24 +03:00
|
|
|
|
|
|
|
backoff = "0.4.0"
|
|
|
|
notify = { version = "6.0.1" }
|
2024-05-15 13:32:41 +03:00
|
|
|
parking_lot = "0.12.1"
|
|
|
|
file-id = "0.2.1"
|
|
|
|
walkdir = "2.2.2"
|
2024-04-17 20:11:24 +03:00
|
|
|
crossbeam-channel = "0.5.12"
|
|
|
|
itertools = "0.12"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gitbutler-testsupport.workspace = true
|
2024-04-17 21:56:14 +03:00
|
|
|
git2.workspace = true
|
|
|
|
tempfile = "3.10"
|
|
|
|
once_cell = "1.19"
|
2024-04-17 20:11:24 +03:00
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
all = "deny"
|
|
|
|
perf = "deny"
|
|
|
|
correctness = "deny"
|