[package] name = "rust-dms" version = "0.1.1" edition = "2024" description = """ A tiny utility to execute certain actions on upon a disconnection of any given USB device. """ authors = ["nm17"] license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://git.dc09.ru/nm17/rust-dms" homepage = "https://git.dc09.ru/nm17/rust-dms" keywords = ["dead-man-switch", "security", "usb", "privacy", "cli"] categories = ["command-line-utilities", "command-line-interface"] [dependencies] clap = { version = "4.5.32", features = ["derive"] } clap-verbosity-flag = "3.0.2" env_logger = "0.11.7" hex = { version = "0.4.3" } libc = { version = "0.2.171", default-features = false } log = "0.4.26" nusb = "0.1.13" signal-hook = "0.3.17" snafu = "0.8.5" [profile.release] codegen-units = 1 opt-level = "z" strip = "symbols" lto = true panic = "abort"