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

@ -22,7 +22,7 @@ jobs:
toolchain: 1.85.1 toolchain: 1.85.1
components: clippy components: clippy
- name: install dependencies - name: install dependencies
run: sudo apt update && sudo apt install -y libxkbcommon-dev libwayland-dev libdbus-1-dev libpulse-dev libinput-dev run: sudo apt update && sudo apt install -y libxkbcommon-dev libwayland-dev libdbus-1-dev libpulse-dev libpipewire-0.3-dev libinput-dev
- uses: actions-rs-plus/clippy-check@v2 - uses: actions-rs-plus/clippy-check@v2
with: with:
toolchain: 1.85.1 toolchain: 1.85.1

990
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

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

View file

@ -12,14 +12,14 @@ cosmic-protocols.workspace = true
futures.workspace = true futures.workspace = true
i18n-embed.workspace = true i18n-embed.workspace = true
i18n-embed-fl.workspace = true i18n-embed-fl.workspace = true
image = { version = "0.25.5", default-features = false } image = { version = "0.25.6", default-features = false }
itertools = "0.14.0" itertools = "0.14.0"
libcosmic.workspace = true libcosmic.workspace = true
memmap2 = "0.9.5" memmap2 = "0.9.7"
rand = "0.9.0" rand = "0.9.2"
rust-embed.workspace = true rust-embed.workspace = true
rustix.workspace = true rustix.workspace = true
serde = { version = "1.0", features = ["derive"] } serde = { workspace = true, features = ["derive"] }
switcheroo-control = { git = "https://github.com/pop-os/dbus-settings-bindings" } switcheroo-control = { git = "https://github.com/pop-os/dbus-settings-bindings" }
tokio.workspace = true tokio.workspace = true
tracing-log.workspace = true tracing-log.workspace = true

View file

@ -7,5 +7,4 @@ edition = "2024"
[dependencies] [dependencies]
libcosmic.workspace = true libcosmic.workspace = true
libcosmic.features = [] serde = { workspace = true, features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }

View file

@ -5,9 +5,10 @@ edition = "2024"
[dependencies] [dependencies]
# cosmic-dbus-a11y = { git = "https://github.com/pop-os/dbus-settings-bindings" } # cosmic-dbus-a11y = { git = "https://github.com/pop-os/dbus-settings-bindings" }
cosmic-settings-subscriptions.workspace = true cosmic-settings-subscriptions = { workspace = true, features = [
cosmic-settings-subscriptions.accessibility = true "accessibility",
cosmic-settings-subscriptions.cosmic_a11y_manager = true "cosmic_a11y_manager",
] }
anyhow.workspace = true anyhow.workspace = true
cctk.workspace = true cctk.workspace = true
cosmic-protocols.workspace = true cosmic-protocols.workspace = true

View file

@ -10,10 +10,10 @@ cosmic-time.workspace = true
i18n-embed-fl.workspace = true i18n-embed-fl.workspace = true
i18n-embed.workspace = true i18n-embed.workspace = true
libcosmic.workspace = true libcosmic.workspace = true
libpulse-binding = "2.28.2" libpulse-binding = "2.30.1"
mpris2-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings" } mpris2-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings" }
rust-embed.workspace = true rust-embed.workspace = true
serde = "1.0.217" serde.workspace = true
tokio.workspace = true tokio.workspace = true
tracing-log.workspace = true tracing-log.workspace = true
tracing-subscriber.workspace = true tracing-subscriber.workspace = true

View file

@ -5,8 +5,11 @@ edition = "2024"
license = "GPL-3.0-only" license = "GPL-3.0-only"
[dependencies] [dependencies]
anyhow = "1" anyhow.workspace = true
cosmic-settings-subscriptions.workspace = true cosmic-settings-subscriptions = { workspace = true, features = [
"upower",
"settings_daemon",
] }
cosmic-time.workspace = true cosmic-time.workspace = true
drm = "0.14.1" drm = "0.14.1"
futures.workspace = true futures.workspace = true

View file

@ -10,11 +10,11 @@ cosmic-comp-config = { git = "https://github.com/pop-os/cosmic-comp.git", rev =
i18n-embed-fl.workspace = true i18n-embed-fl.workspace = true
i18n-embed.workspace = true i18n-embed.workspace = true
libcosmic.workspace = true libcosmic.workspace = true
libpulse-binding = "2.28.2" libpulse-binding = "2.30.1"
rust-embed.workspace = true rust-embed.workspace = true
tokio.workspace = true tokio.workspace = true
tracing-log.workspace = true tracing-log.workspace = true
tracing-subscriber.workspace = true tracing-subscriber.workspace = true
tracing.workspace = true tracing.workspace = true
serde = { version = "1.0.217", features = ["derive"] } serde = { workspace = true, features = ["derive"] }
xkb-data = "0.2" xkb-data = "0.2"

View file

@ -8,9 +8,9 @@ license = "GPL-3.0-only"
anyhow.workspace = true anyhow.workspace = true
i18n-embed-fl.workspace = true i18n-embed-fl.workspace = true
i18n-embed.workspace = true i18n-embed.workspace = true
image = { version = "0.25.5", default-features = false } image = { version = "0.25.6", default-features = false }
libcosmic.workspace = true libcosmic.workspace = true
memmap2 = "0.9.5" memmap2 = "0.9.7"
rust-embed.workspace = true rust-embed.workspace = true
rustix.workspace = true rustix.workspace = true
tokio.workspace = true tokio.workspace = true

View file

@ -5,7 +5,6 @@ edition = "2024"
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"
[dependencies] [dependencies]
anyhow.workspace = true anyhow.workspace = true
cosmic-dbus-networkmanager = { git = "https://github.com/pop-os/dbus-settings-bindings" } cosmic-dbus-networkmanager = { git = "https://github.com/pop-os/dbus-settings-bindings" }
cosmic-time.workspace = true cosmic-time.workspace = true
@ -14,14 +13,13 @@ futures-util.workspace = true
i18n-embed-fl.workspace = true i18n-embed-fl.workspace = true
i18n-embed.workspace = true i18n-embed.workspace = true
itertools = "0.14.0" itertools = "0.14.0"
libcosmic.workspace = true libcosmic = { workspace = true, features = [
libcosmic.features = [
"applet", "applet",
"applet-token", "applet-token",
"tokio", "tokio",
"wayland", "wayland",
"desktop", "desktop",
] ] }
rust-embed.workspace = true rust-embed.workspace = true
tokio.workspace = true tokio.workspace = true
tracing-log.workspace = true tracing-log.workspace = true

View file

@ -13,21 +13,19 @@ cosmic-notifications-util = { git = "https://github.com/pop-os/cosmic-notificati
cosmic-notifications-config = { git = "https://github.com/pop-os/cosmic-notifications" } cosmic-notifications-config = { git = "https://github.com/pop-os/cosmic-notifications" }
# cosmic-notifications-util = { path = "../../cosmic-notifications-daemon/cosmic-notifications-util" } # cosmic-notifications-util = { path = "../../cosmic-notifications-daemon/cosmic-notifications-util" }
# cosmic-notifications-config = { path = "../../cosmic-notifications-daemon/cosmic-notifications-config" } # cosmic-notifications-config = { path = "../../cosmic-notifications-daemon/cosmic-notifications-config" }
futures-util = { version = "0.3", features = ["sink"] }
tracing = "0.1"
ron = "0.8"
sendfd = { version = "0.4", features = ["tokio"] } sendfd = { version = "0.4", features = ["tokio"] }
bytemuck = "1" bytemuck = "1"
futures-util = { workspace = true, features = ["sink"] }
tracing-subscriber.workspace = true tracing-subscriber.workspace = true
tracing-log.workspace = true tracing-log.workspace = true
zbus.workspace = true tracing.workspace = true
zbus.features = ["tokio", "p2p"]
# Application i18n # Application i18n
i18n-embed = { version = "0.15.3", features = [ i18n-embed = { workspace = true, features = [
"fluent-system", "fluent-system",
"desktop-requester", "desktop-requester",
] } ] }
i18n-embed-fl = "0.9.3" i18n-embed-fl.workspace = true
rust-embed = "8.5.0" rust-embed.workspace = true
rust-embed-utils = "8.5.0" rust-embed-utils.workspace = true
zbus = { workspace = true, features = ["tokio", "p2p"] }
url = "2.5.4" url = "2.5.4"

View file

@ -7,7 +7,7 @@ license = "GPL-3.0-only"
[dependencies] [dependencies]
futures.workspace = true futures.workspace = true
libcosmic.workspace = true libcosmic.workspace = true
serde = "1" serde.workspace = true
tokio.workspace = true tokio.workspace = true
tracing.workspace = true tracing.workspace = true
tracing-log.workspace = true tracing-log.workspace = true

View file

@ -7,7 +7,7 @@ license = "GPL-3.0-only"
[dependencies] [dependencies]
cosmic-applets-config.workspace = true cosmic-applets-config.workspace = true
cosmic-config.workspace = true cosmic-config.workspace = true
chrono = { version = "0.4.39", features = ["clock"] } chrono = { version = "0.4.41", features = ["clock"] }
chrono-tz = "0.10" chrono-tz = "0.10"
i18n-embed-fl.workspace = true i18n-embed-fl.workspace = true
i18n-embed.workspace = true i18n-embed.workspace = true

1
debian/control vendored
View file

@ -10,6 +10,7 @@ Build-Depends:
libdbus-1-dev, libdbus-1-dev,
libegl-dev, libegl-dev,
libpulse-dev, libpulse-dev,
libpipewire-0.3-dev,
libudev-dev, libudev-dev,
libxkbcommon-dev, libxkbcommon-dev,
libwayland-dev, libwayland-dev,