[package] name = "vigil-local" version = "1.1.6" description = "Vigil Local daemon. Used as a slave service to monitor hosts behind a firewall and report their status to Vigil." readme = "README.md" license = "MPL-2.0" edition = "2018" homepage = "https://github.com/valeriansaliou/vigil-local" repository = "https://github.com/valeriansaliou/vigil-local.git" keywords = ["infrastructure", "status", "monitor"] categories = ["web-programming"] authors = ["Valerian Saliou "] [[bin]] name = "vigil-local" path = "src/main.rs" doc = false [dependencies] log = "0.4" clap = { version = "4.1", features = ["std", "cargo"] } lazy_static = "1.4" serde = { version = "1.0", default-features = false } serde_derive = "1.0" serde_json = "1.0" toml = "0.7" url = { version = "2.1", default-features = false } ping = "0.4" run_script = "0.10" http_req = { version = "0.9", features = ["rust-tls"], default-features = false } base64 = "0.21" [profile.dev] opt-level = 0 debug = true debug-assertions = true [profile.release] opt-level = "s" lto = true debug = false debug-assertions = false panic = "abort" strip = true