updated dependencies
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul 2024-12-30 22:24:39 +01:00
parent ecdbdb8960
commit a7dc0a83cd
3 changed files with 829 additions and 459 deletions

1278
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -9,10 +9,10 @@ repository = "https://git.paulbsd.com/paulbsd/zabbixlaunch"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "4.3"
clap = { version = "4.5" }
embedded-graphics = { version = "0.8", optional = true }
launchy = { git = "https://github.com/paulbsd/launchy", branch = "develop-launchpad-mini-mk3" }
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
nix = "0.26"
serde_json = { version = "1.0" }
nix = { version = "0.29", features = ["inotify"] }

View File

@ -25,7 +25,7 @@ pub enum Mode {
Effect,
}
#[derive(Debug, Clone)]
#[derive(Debug)]
pub struct Context {
pub cfg: Config,
configfile: String,