[package] name = "witness" version = "0.3.0" edition = "2021" authors = ["Christofer Nolander "] description = "run commands when a file is modified or upon receiving TCP/UDP packets" readme = "README.md" homepage = "https://github.com/nolanderc/witness" repository = "https://github.com/nolanderc/witness" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.56" clap = { version = "3.1.8", features = ["derive", "env", "color"] } notify = "4.0.17" tokio = { version = "1.17.0", features = ["rt", "macros", "process", "io-util", "io-std", "sync", "net", "time", "signal"] } tracing = "0.1.32" tracing-subscriber = { version = "0.3.10", features = ["env-filter"] }