Files
nym/common/async-file-watcher/Cargo.toml
T
2026-04-17 09:23:55 +01:00

22 lines
660 B
TOML

[package]
name = "nym-async-file-watcher"
description = "Simple file watcher that sends a notification whenever there was any change in the watched file"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
rust-version.workspace = true
readme.workspace = true
publish = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = { workspace = true }
log = { workspace = true }
notify = { workspace = true }
tokio = { workspace = true, features = ["time"] }