zabbixlaunch/Cargo.toml

14 lines
441 B
TOML
Raw Normal View History

2021-09-05 20:30:24 +02:00
[package]
name = "zabbixlaunch"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-09-09 00:50:28 +02:00
clap = { version = "2.33.3" }
embedded-graphics = { version = "0.7", optional = true }
launchy = { path = "launchy" }
reqwest = { version = "0.11.4", features = ["blocking", "json"] }
2021-09-05 20:30:24 +02:00
serde = { version = "1.0.130", features = ["derive"] }
2021-09-09 00:50:28 +02:00
serde_json = "1.0.67"