Files
smartwatch/rust/Cargo.toml

20 lines
309 B
TOML

[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