chore: update dependencies

This commit is contained in:
Vukašin Vojinović 2025-10-16 13:39:28 +02:00 committed by Victoria Brekenfeld
parent 23db1b9ec3
commit 3b70bc0265
3 changed files with 132 additions and 185 deletions

View file

@ -10,10 +10,10 @@ rust-version = "1.85"
members = ["cosmic-comp-config"]
[dependencies]
anyhow = { version = "1.0.98", features = ["backtrace"] }
bitflags = "2.9.1"
bytemuck = "1.23"
calloop = { version = "0.14.2", features = ["executor"] }
anyhow = { version = "1.0.100", features = ["backtrace"] }
bitflags = "2.9.4"
bytemuck = "1.24"
calloop = { version = "0.14.3", features = ["executor"] }
cosmic-comp-config = { path = "cosmic-comp-config", features = [
"libdisplay-info",
"output",
@ -32,8 +32,8 @@ cosmic-settings-daemon-config = { git = "https://github.com/pop-os/cosmic-settin
cosmic-text = { git = "https://github.com/pop-os/cosmic-text.git", features = [
"shape-run-cache",
] }
libdisplay-info = "0.2.2"
egui = { version = "0.31.0", optional = true }
libdisplay-info = "0.3.0"
egui = { version = "0.31.1", optional = true }
egui_plot = { version = "0.31.0", optional = true }
i18n-embed = { version = "0.16", features = [
"fluent-system",
@ -41,23 +41,23 @@ i18n-embed = { version = "0.16", features = [
] }
i18n-embed-fl = "0.10"
iced_tiny_skia = { git = "https://github.com/pop-os/libcosmic/" }
indexmap = "2.10"
indexmap = "2.11"
keyframe = "1.1.1"
libc = "0.2.174"
libc = "0.2.177"
libcosmic = { git = "https://github.com/pop-os/libcosmic/", default-features = false }
libsystemd = { version = "0.7", optional = true }
log-panics = { version = "2", features = ["with-backtrace"] }
ordered-float = "5.0"
png = "0.17.16"
ordered-float = "5.1"
png = "0.18"
regex = "1"
ron = "0.10.1"
ron = "0.11"
rust-embed = { version = "8.7", features = ["debug-embed"] }
sanitize-filename = "0.6.0"
sendfd = "0.4.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2.0.12"
time = { version = "0.3.41", features = [
thiserror = "2.0.17"
time = { version = "0.3.44", features = [
"macros",
"formatting",
"local-offset",
@ -68,26 +68,26 @@ tracing = { version = "0.1.41", features = [
"release_max_level_info",
] }
tracing-journald = "0.3.1"
tracing-subscriber = { version = "0.3.19", features = [
tracing-subscriber = { version = "0.3.20", features = [
"env-filter",
"tracing-log",
] }
tracy-client = { version = "0.18.2", default-features = false }
wayland-backend = "0.3.10"
wayland-scanner = "0.31.6"
wayland-backend = "0.3.11"
wayland-scanner = "0.31.7"
xcursor = "0.3.10"
xdg = "^3.0"
xdg-user = "0.2.1"
xkbcommon = "0.8"
zbus = "5.9.0"
xkbcommon = "0.9"
zbus = "5.12.0"
profiling = { version = "1.0" }
rustix = { version = "1.0.8", features = ["process"] }
rustix = { version = "1.1.2", features = ["process"] }
smallvec = "1.15.1"
rand = "0.9.2"
reis = { version = "0.5", features = ["calloop"] }
# CLI arguments
clap_lex = "0.7"
parking_lot = "0.12.4"
parking_lot = "0.12.5"
logind-zbus = { version = "5.3.2", optional = true }
[dependencies.id_tree]