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:
parent
2b7b4cba56
commit
2c618622d3
15 changed files with 642 additions and 430 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -22,7 +22,7 @@ jobs:
|
|||
toolchain: 1.85.1
|
||||
components: clippy
|
||||
- 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
|
||||
with:
|
||||
toolchain: 1.85.1
|
||||
|
|
|
|||
990
Cargo.lock
generated
990
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
16
Cargo.toml
16
Cargo.toml
|
|
@ -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"] }
|
||||
|
||||
|
|
|
|||
|
|
@ -12,14 +12,14 @@ cosmic-protocols.workspace = true
|
|||
futures.workspace = true
|
||||
i18n-embed.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"
|
||||
libcosmic.workspace = true
|
||||
memmap2 = "0.9.5"
|
||||
rand = "0.9.0"
|
||||
memmap2 = "0.9.7"
|
||||
rand = "0.9.2"
|
||||
rust-embed.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" }
|
||||
tokio.workspace = true
|
||||
tracing-log.workspace = true
|
||||
|
|
|
|||
|
|
@ -7,5 +7,4 @@ edition = "2024"
|
|||
|
||||
[dependencies]
|
||||
libcosmic.workspace = true
|
||||
libcosmic.features = []
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
|
|
|
|||
|
|
@ -5,9 +5,10 @@ edition = "2024"
|
|||
|
||||
[dependencies]
|
||||
# cosmic-dbus-a11y = { git = "https://github.com/pop-os/dbus-settings-bindings" }
|
||||
cosmic-settings-subscriptions.workspace = true
|
||||
cosmic-settings-subscriptions.accessibility = true
|
||||
cosmic-settings-subscriptions.cosmic_a11y_manager = true
|
||||
cosmic-settings-subscriptions = { workspace = true, features = [
|
||||
"accessibility",
|
||||
"cosmic_a11y_manager",
|
||||
] }
|
||||
anyhow.workspace = true
|
||||
cctk.workspace = true
|
||||
cosmic-protocols.workspace = true
|
||||
|
|
|
|||
|
|
@ -10,10 +10,10 @@ cosmic-time.workspace = true
|
|||
i18n-embed-fl.workspace = true
|
||||
i18n-embed.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" }
|
||||
rust-embed.workspace = true
|
||||
serde = "1.0.217"
|
||||
serde.workspace = true
|
||||
tokio.workspace = true
|
||||
tracing-log.workspace = true
|
||||
tracing-subscriber.workspace = true
|
||||
|
|
|
|||
|
|
@ -5,8 +5,11 @@ edition = "2024"
|
|||
license = "GPL-3.0-only"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
cosmic-settings-subscriptions.workspace = true
|
||||
anyhow.workspace = true
|
||||
cosmic-settings-subscriptions = { workspace = true, features = [
|
||||
"upower",
|
||||
"settings_daemon",
|
||||
] }
|
||||
cosmic-time.workspace = true
|
||||
drm = "0.14.1"
|
||||
futures.workspace = true
|
||||
|
|
|
|||
|
|
@ -10,11 +10,11 @@ cosmic-comp-config = { git = "https://github.com/pop-os/cosmic-comp.git", rev =
|
|||
i18n-embed-fl.workspace = true
|
||||
i18n-embed.workspace = true
|
||||
libcosmic.workspace = true
|
||||
libpulse-binding = "2.28.2"
|
||||
libpulse-binding = "2.30.1"
|
||||
rust-embed.workspace = true
|
||||
tokio.workspace = true
|
||||
tracing-log.workspace = true
|
||||
tracing-subscriber.workspace = true
|
||||
tracing.workspace = true
|
||||
serde = { version = "1.0.217", features = ["derive"] }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
xkb-data = "0.2"
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ license = "GPL-3.0-only"
|
|||
anyhow.workspace = true
|
||||
i18n-embed-fl.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
|
||||
memmap2 = "0.9.5"
|
||||
memmap2 = "0.9.7"
|
||||
rust-embed.workspace = true
|
||||
rustix.workspace = true
|
||||
tokio.workspace = true
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ edition = "2024"
|
|||
license = "GPL-3.0-or-later"
|
||||
|
||||
[dependencies]
|
||||
|
||||
anyhow.workspace = true
|
||||
cosmic-dbus-networkmanager = { git = "https://github.com/pop-os/dbus-settings-bindings" }
|
||||
cosmic-time.workspace = true
|
||||
|
|
@ -14,14 +13,13 @@ futures-util.workspace = true
|
|||
i18n-embed-fl.workspace = true
|
||||
i18n-embed.workspace = true
|
||||
itertools = "0.14.0"
|
||||
libcosmic.workspace = true
|
||||
libcosmic.features = [
|
||||
libcosmic = { workspace = true, features = [
|
||||
"applet",
|
||||
"applet-token",
|
||||
"tokio",
|
||||
"wayland",
|
||||
"desktop",
|
||||
]
|
||||
] }
|
||||
rust-embed.workspace = true
|
||||
tokio.workspace = true
|
||||
tracing-log.workspace = true
|
||||
|
|
|
|||
|
|
@ -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-util = { path = "../../cosmic-notifications-daemon/cosmic-notifications-util" }
|
||||
# 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"] }
|
||||
bytemuck = "1"
|
||||
futures-util = { workspace = true, features = ["sink"] }
|
||||
tracing-subscriber.workspace = true
|
||||
tracing-log.workspace = true
|
||||
zbus.workspace = true
|
||||
zbus.features = ["tokio", "p2p"]
|
||||
tracing.workspace = true
|
||||
# Application i18n
|
||||
i18n-embed = { version = "0.15.3", features = [
|
||||
i18n-embed = { workspace = true, features = [
|
||||
"fluent-system",
|
||||
"desktop-requester",
|
||||
] }
|
||||
i18n-embed-fl = "0.9.3"
|
||||
rust-embed = "8.5.0"
|
||||
rust-embed-utils = "8.5.0"
|
||||
i18n-embed-fl.workspace = true
|
||||
rust-embed.workspace = true
|
||||
rust-embed-utils.workspace = true
|
||||
zbus = { workspace = true, features = ["tokio", "p2p"] }
|
||||
url = "2.5.4"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ license = "GPL-3.0-only"
|
|||
[dependencies]
|
||||
futures.workspace = true
|
||||
libcosmic.workspace = true
|
||||
serde = "1"
|
||||
serde.workspace = true
|
||||
tokio.workspace = true
|
||||
tracing.workspace = true
|
||||
tracing-log.workspace = true
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ license = "GPL-3.0-only"
|
|||
[dependencies]
|
||||
cosmic-applets-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"
|
||||
i18n-embed-fl.workspace = true
|
||||
i18n-embed.workspace = true
|
||||
|
|
|
|||
1
debian/control
vendored
1
debian/control
vendored
|
|
@ -10,6 +10,7 @@ Build-Depends:
|
|||
libdbus-1-dev,
|
||||
libegl-dev,
|
||||
libpulse-dev,
|
||||
libpipewire-0.3-dev,
|
||||
libudev-dev,
|
||||
libxkbcommon-dev,
|
||||
libwayland-dev,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue