feat(watchers): add Rust-powered watcher backend with runtime fallback and cross-platform test coverage

This commit is contained in:
2026-03-23 14:15:31 +00:00
parent ca9a66e03e
commit 7def7020c6
26 changed files with 10383 additions and 2870 deletions

19
rust/Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "smartwatch-rust"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "smartwatch-rust"
path = "src/main.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
notify = "7"
notify-debouncer-full = "0.4"
[profile.release]
opt-level = "z"
lto = true
strip = true