chore: update dependencies

Sets the resolver to 3, so it's Rust-version aware. Without it, some dependencies get updated to versions needing Rust versions newer than the target.
This commit is contained in:
Vukašin Vojinović 2025-08-12 23:09:49 +02:00 committed by Michael Murphy
parent 2b7b4cba56
commit 2c618622d3
15 changed files with 642 additions and 430 deletions

View file

@ -21,10 +21,10 @@ members = [
"cosmic-applets-config",
]
resolver = "2"
resolver = "3"
[workspace.dependencies]
anyhow = "1.0.95"
anyhow = "1.0.99"
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "178eb0b" }
cosmic-applets-config = { path = "cosmic-applets-config" }
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", default-features = false, features = [
@ -37,11 +37,11 @@ cosmic-time = { git = "https://github.com/pop-os/cosmic-time", default-features
futures = "0.3"
futures-util = "0.3"
i18n-embed = { version = "0.15.3", features = [
i18n-embed = { version = "0.16.0", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.9"
i18n-embed-fl = "0.10"
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false, features = [
"applet",
"applet-token",
@ -52,14 +52,14 @@ libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = fa
"desktop-systemd-scope",
"winit",
] }
rust-embed = "8.5"
rust-embed-utils = "8.5.0"
rust-embed = "8.7.2"
rust-embed-utils = "8.7.2"
rustix = { version = "1.0", features = ["fs", "process"] }
zbus = { version = "5.7.1", default-features = false, features = ["tokio"] }
zbus = { version = "5.9.0", default-features = false, features = ["tokio"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing-log = "0.2.0"
tokio = { version = "1.45.0", features = ["full"] }
tokio = { version = "1.47.1", features = ["full"] }
cosmic-config = { git = "https://github.com/pop-os/libcosmic" }
serde = { version = "1.0.219", features = ["derive"] }