[package]
edition = "2024"
rust-version = "1.98.0"
name = "clankerdiff-watch"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native filesystem watching and coalesced Git snapshot publication"
readme = false
license = "MIT"
repository = "https://github.com/contextbridge/diff"
[features]
test-support = []
[lib]
name = "clankerdiff_watch"
path = "src/lib.rs"
[[test]]
name = "fake_file_watcher_tests"
path = "tests/file_watcher/fake_file_watcher_tests.rs"
[[test]]
name = "notify_file_watcher_tests"
path = "tests/file_watcher/notify_file_watcher_tests.rs"
[[test]]
name = "repository_watcher_tests"
path = "tests/repository_watcher_tests.rs"
[dependencies.clankerdiff-core]
version = "0.1.1"
[dependencies.clankerdiff-git]
version = "0.1.1"
[dependencies.notify]
version = "8.2.0"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.tokio]
version = "1.47.1"
features = [
"fs",
"process",
"rt-multi-thread",
"macros",
"rt",
"sync",
"time",
]
[dev-dependencies.tempfile]
version = "3.21.0"
[dev-dependencies.tokio]
version = "1.47.1"
features = [
"fs",
"process",
"rt-multi-thread",
"macros",
"rt-multi-thread",
]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.missing_errors_doc]
level = "allow"
priority = 0
[lints.clippy.missing_panics_doc]
level = "allow"
priority = 0
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"