Upgrade dependencies

This commit is contained in:
Ivan Molodetskikh
2026-01-11 15:32:28 +03:00
parent 7e559dc468
commit 79aaa4c6c0
3 changed files with 204 additions and 226 deletions
Generated
+188 -210
View File
File diff suppressed because it is too large Load Diff
+15 -15
View File
@@ -17,16 +17,16 @@ rust-version = "1.85"
[workspace.dependencies]
anyhow = "1.0.100"
bitflags = "2.10.0"
clap = { version = "4.5.53", features = ["derive"] }
insta = "1.44.3"
clap = { version = "4.5.54", features = ["derive"] }
insta = "1.46.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
tracing = { version = "0.1.43", features = ["max_level_trace", "release_max_level_debug"] }
serde_json = "1.0.149"
tracing = { version = "0.1.44", features = ["max_level_trace", "release_max_level_debug"] }
# 0.3.20 filters out all ANSI codes to "fix a security issue" while also breaking
# everyone who relied on them for color output, with no fallback available.
# https://github.com/tokio-rs/tracing/issues/3378
tracing-subscriber = { version = "=0.3.19", features = ["env-filter"] }
tracy-client = { version = "0.18.3", default-features = false }
tracy-client = { version = "0.18.4", default-features = false }
[workspace.dependencies.smithay]
# version = "0.4.1"
@@ -53,8 +53,8 @@ readme = "README.md"
keywords = ["wayland", "compositor", "tiling", "smithay", "wm"]
[dependencies]
accesskit = { version = "0.21.1", optional = true }
accesskit_unix = { version = "0.17.2", optional = true }
accesskit = { version = "0.22.0", optional = true }
accesskit_unix = { version = "0.18.0", optional = true }
anyhow.workspace = true
arrayvec = "0.7.6"
async-channel = "2.5.0"
@@ -64,17 +64,17 @@ bitflags.workspace = true
bytemuck = { version = "1.24.0", features = ["derive"] }
calloop = { version = "0.14.3", features = ["executor", "futures-io", "signals"] }
clap = { workspace = true, features = ["string"] }
clap_complete = "4.5.61"
clap_complete = "4.5.65"
clap_complete_nushell = "4.5.10"
directories = "6.0.0"
drm-ffi = "0.9.0"
fastrand = "2.3.0"
futures-util = { version = "0.3.31", default-features = false, features = ["std", "io"] }
git-version = "0.3.9"
glam = "0.30.9"
glam = "0.30.10"
input = { version = "0.9.1", features = ["libinput_1_21"] }
keyframe = { version = "1.1.1", default-features = false }
libc = "0.2.178"
libc = "0.2.180"
libdisplay-info = "0.3.0"
log = { version = "0.4.29", features = ["max_level_trace", "release_max_level_debug"] }
niri-config = { version = "25.11.0", path = "niri-config" }
@@ -84,7 +84,7 @@ pango = { version = "0.21.5", features = ["v1_44"] }
pangocairo = "0.21.5"
pipewire = { version = "0.9.2", optional = true, features = ["v0_3_33"] }
png = "0.18.0"
portable-atomic = { version = "1.11.1", default-features = false, features = ["float"] }
portable-atomic = { version = "1.13.0", default-features = false, features = ["float"] }
profiling = "1.0.17"
sd-notify = "0.4.5"
serde.workspace = true
@@ -93,10 +93,10 @@ smithay-drm-extras.workspace = true
tracing-subscriber.workspace = true
tracing.workspace = true
tracy-client.workspace = true
wayland-backend = "0.3.11"
wayland-scanner = "0.31.7"
wayland-backend = "0.3.12"
wayland-scanner = "0.31.8"
xcursor = "0.3.10"
zbus = { version = "5.12.0", optional = true }
zbus = { version = "5.13.0", optional = true }
[dependencies.smithay]
workspace = true
@@ -123,7 +123,7 @@ insta.workspace = true
proptest = "1.9.0"
proptest-derive = { version = "0.7.0", features = ["boxed_union"] }
rayon = "1.11.0"
wayland-client = "0.31.11"
wayland-client = "0.31.12"
xshell = "0.2.7"
[build-dependencies]
+1 -1
View File
@@ -13,7 +13,7 @@ readme = "README.md"
[dependencies]
clap = { workspace = true, optional = true }
schemars = { version = "1.1.0", optional = true }
schemars = { version = "1.2.0", optional = true }
serde.workspace = true
serde_json.workspace = true