-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
45 lines (41 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "vigil-local"
version = "1.2.0"
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 <valerian@valeriansaliou.name>"]
[[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"
envsubst = "0.2"
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