updated Cargo.toml

This commit is contained in:
Paul Lecuq 2021-12-09 09:40:43 +01:00
parent 05b38b3540
commit 0dc914beb5

View File

@ -1,15 +1,15 @@
[package] [package]
name = "zabbixlaunch" name = "zabbixlaunch"
version = "1.0.0" version = "1.0.0"
edition = "2018" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
clap = { version = "2.33.3", features = ["yaml"] } clap = { version = "2", features = ["yaml"] }
embedded-graphics = { version = "0.7.1", optional = true } embedded-graphics = { version = "0.7", optional = true }
launchy = { git = "https://github.com/kangalioo/launchy", branch = "master" } launchy = { git = "https://github.com/kangalioo/launchy", branch = "master" }
reqwest = { version = "0.11.5", features = ["blocking", "json"] } reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0.130", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68" serde_json = "1.0"
nix = "0.23.0" nix = "0.23"