refactor: resolve security advisories and update core dependencies
Code Quality / quality-checks (push) Has been cancelled
Security Scan / security-audit (push) Has been cancelled

This commit is contained in:
2026-04-10 18:29:33 +02:00
parent 50a445937f
commit 92dc3a983e
3 changed files with 512 additions and 413 deletions
Generated
+486 -405
View File
File diff suppressed because it is too large Load Diff
+9 -8
View File
@@ -2,6 +2,7 @@
name = "rustlock" name = "rustlock"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
license = "GPL-3.0-or-later"
[dependencies] [dependencies]
smithay-client-toolkit = { version = "0.19", default-features = false, features = ["calloop", "xkbcommon"] } smithay-client-toolkit = { version = "0.19", default-features = false, features = ["calloop", "xkbcommon"] }
@@ -14,26 +15,26 @@ cairo-rs = { version = "0.20", default-features = false, features = ["png"] }
gdk-pixbuf = { version = "0.20", default-features = false, features = ["v2_40"] } gdk-pixbuf = { version = "0.20", default-features = false, features = ["v2_40"] }
gio = { version = "0.20" } gio = { version = "0.20" }
pangocairo = { version = "0.20" } pangocairo = { version = "0.20" }
clap = { version = "4.4", default-features = false, features = ["derive", "std", "help", "usage", "error-context"] } clap = { version = "4.6", default-features = false, features = ["derive", "std", "help", "usage", "error-context"] }
toml = { version = "1.0", default-features = false, features = ["parse", "display", "serde"] } toml = { version = "1.1", default-features = false, features = ["parse", "display", "serde"] }
serde = { version = "1.0", default-features = false, features = ["derive", "std"] } serde = { version = "1.0", default-features = false, features = ["derive", "std"] }
zeroize = "1.7" zeroize = "1.8"
log = "0.4" log = "0.4"
env_logger = { version = "0.11", default-features = false, features = ["color", "humantime"] } env_logger = { version = "0.11", default-features = false, features = ["color", "humantime"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] } chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
whoami = "1.0" whoami = "1.6"
zbus = { version = "3.15", default-features = false, features = ["tokio"] } zbus = { version = "5.14", default-features = false, features = ["tokio"] }
mpris = "2.0" mpris = "2.0"
upower_dbus = "0.3" upower_dbus = "0.3"
tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi-thread", "macros", "time", "sync"] } tokio = { version = "1.51", default-features = false, features = ["rt", "rt-multi-thread", "macros", "time", "sync"] }
num-traits = { version = "0.2" } num-traits = { version = "0.2" }
rand = { version = "0.8" } rand = { version = "0.8" }
reqwest = { version = "0.11", default-features = false, features = ["blocking", "rustls-tls"], optional = true } reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"], optional = true }
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] } image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
fastblur = "0.1" fastblur = "0.1"
pam-client = "0.5" pam-client = "0.5"
thiserror = "1.0" thiserror = "1.0"
bytemuck = "1.14" bytemuck = "1.25"
calloop = "0.13" calloop = "0.13"
xkbcommon = "0.7" xkbcommon = "0.7"
calloop-wayland-source = "0.3" calloop-wayland-source = "0.3"
+17
View File
@@ -4,6 +4,23 @@ ignore = []
[bans] [bans]
multiple-versions = "allow" multiple-versions = "allow"
[licenses]
allow = [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Zlib",
"Unlicense",
"0BSD",
"Unicode-3.0",
"MPL-2.0",
"GPL-3.0-or-later",
"Apache-2.0 WITH LLVM-exception",
"CDLA-Permissive-2.0",
]
[sources] [sources]
allow-registry = ["https://github.com/rust-lang/crates.io-index"] allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = [] allow-git = []