chore: update dependencies
This commit is contained in:
parent
91e14abe49
commit
6e022755f1
12 changed files with 597 additions and 478 deletions
1018
Cargo.lock
generated
1018
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -13,7 +13,7 @@ ashpd = { version = "0.12", default-features = false, features = [
|
|||
], optional = true }
|
||||
chrono = "0.4"
|
||||
jiff = "0.2"
|
||||
clap = { version = "4.5.54", features = ["derive"] }
|
||||
clap = { version = "4.5.59", features = ["derive"] }
|
||||
color-eyre = "0.6.5"
|
||||
cosmic-bg-config.workspace = true
|
||||
cosmic-comp-config = { workspace = true, optional = true }
|
||||
|
|
@ -38,11 +38,11 @@ cosmic-settings-sound-subscription = { path = "../subscriptions/sound", optional
|
|||
] }
|
||||
cosmic-settings-wallpaper = { path = "../pages/wallpapers" }
|
||||
cosmic-settings-daemon-config = { git = "https://github.com/pop-os/cosmic-settings-daemon", optional = true }
|
||||
derive_setters = "0.1.8"
|
||||
derive_setters = "0.1.9"
|
||||
dirs = "6.0.0"
|
||||
eyre = "0.6.12"
|
||||
freedesktop-desktop-entry = "0.8.1"
|
||||
futures = "0.3.31"
|
||||
futures = "0.3.32"
|
||||
hostname-validator = "1.1.1"
|
||||
hostname1-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
|
||||
i18n-embed-fl = "0.10.0"
|
||||
|
|
@ -58,16 +58,16 @@ itertools = "0.14.0"
|
|||
itoa = "1.0.17"
|
||||
libcosmic.workspace = true
|
||||
locale1 = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
|
||||
sysinfo = { version = "0.37.2", optional = true }
|
||||
sysinfo = { version = "0.38.2", optional = true }
|
||||
mime-apps = { package = "cosmic-mime-apps", git = "https://github.com/pop-os/cosmic-mime-apps", optional = true }
|
||||
notify = "8.2.0"
|
||||
regex = "1.12.2"
|
||||
regex = "1.12.3"
|
||||
ron = "0.12"
|
||||
rust-embed = "8.9.0"
|
||||
rust-embed = "8.11.0"
|
||||
sctk = { workspace = true, optional = true }
|
||||
secure-string = "0.3.0"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
slab = "0.4.11"
|
||||
slab = "0.4.12"
|
||||
slotmap = "1.1.1"
|
||||
static_init = "1.0.4"
|
||||
sunrise = "3.0.0"
|
||||
|
|
@ -79,9 +79,9 @@ udev = { version = "0.9.3", optional = true }
|
|||
upower_dbus = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
|
||||
bluez-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
|
||||
url = "2.5.8"
|
||||
xkb-data = "0.2.1"
|
||||
xkb-data = "0.2.2"
|
||||
xkeysym = { version = "0.2.1", optional = true }
|
||||
zbus = { version = "5.13.1", default-features = false, features = [
|
||||
zbus = { version = "5.13.2", default-features = false, features = [
|
||||
"tokio",
|
||||
], optional = true }
|
||||
zbus_polkit = { version = "5.0.0", optional = true }
|
||||
|
|
|
|||
|
|
@ -368,6 +368,7 @@ impl<Message: Clone> Widget<Message, cosmic::Theme, Renderer> for Arrangement<'_
|
|||
vertical_alignment: alignment::Vertical::Center,
|
||||
shaping: text::Shaping::Basic,
|
||||
wrapping: text::Wrapping::Word,
|
||||
ellipsize: text::Ellipsize::None,
|
||||
},
|
||||
core::Point {
|
||||
x: id_bounds.center_x(),
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@ version = "1.0.7"
|
|||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
derive_setters = "0.1.8"
|
||||
regex = "1.12.2"
|
||||
derive_setters = "0.1.9"
|
||||
regex = "1.12.3"
|
||||
slotmap = "1.1.1"
|
||||
libcosmic = { workspace = true }
|
||||
downcast-rs = "2.0.2"
|
||||
url = "2.5.8"
|
||||
slab = "0.4.11"
|
||||
slab = "0.4.12"
|
||||
|
|
|
|||
|
|
@ -11,11 +11,11 @@ cosmic-bg-config = { workspace = true }
|
|||
cosmic-randr-shell = { workspace = true }
|
||||
dirs = "6.0.0"
|
||||
eyre = "0.6.12"
|
||||
fast_image_resize = { version = "5", features = [
|
||||
fast_image_resize = { version = "6", features = [
|
||||
"image",
|
||||
] }
|
||||
futures-lite = "2.6.1"
|
||||
futures-util = "0.3.31"
|
||||
futures-util = "0.3.32"
|
||||
image = "0.25.9"
|
||||
infer = "0.19.0"
|
||||
jxl-oxide = { version = "0.12.5", features = ["image"] }
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@ publish = true
|
|||
|
||||
[dependencies]
|
||||
cosmic-dbus-a11y = { git = "https://github.com/pop-os/dbus-settings-bindings" }
|
||||
futures = "0.3.31"
|
||||
futures = "0.3.32"
|
||||
iced_futures = { git = "https://github.com/pop-os/libcosmic" }
|
||||
tokio = { version = "1.49.0", features = ["sync", "time"] }
|
||||
tracing = "0.1.44"
|
||||
zbus = "5.12"
|
||||
zbus = "5.13"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ rust-version.workspace = true
|
|||
publish = true
|
||||
|
||||
[dependencies]
|
||||
futures = "0.3.31"
|
||||
futures = "0.3.32"
|
||||
iced_futures = { git = "https://github.com/pop-os/libcosmic" }
|
||||
log = "0.4.29"
|
||||
rustix = "1.1.3"
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@ publish = true
|
|||
|
||||
[dependencies]
|
||||
bluez-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings" }
|
||||
futures = "0.3.31"
|
||||
futures = "0.3.32"
|
||||
iced_futures = { git = "https://github.com/pop-os/libcosmic" }
|
||||
tokio = "1.49.0"
|
||||
tracing = "0.1.44"
|
||||
zbus = "5.12.0"
|
||||
zbus = "5.13.2"
|
||||
|
|
|
|||
|
|
@ -10,12 +10,12 @@ publish = true
|
|||
cosmic-dbus-networkmanager = { git = "https://github.com/pop-os/dbus-settings-bindings" }
|
||||
secret-service = { version = "5.1.0", features = ["rt-tokio-crypto-rust"] }
|
||||
nm-secret-agent-manager = { git = "https://github.com/pop-os/dbus-settings-bindings" }
|
||||
futures = "0.3.31"
|
||||
futures = "0.3.32"
|
||||
iced_futures = { git = "https://github.com/pop-os/libcosmic" }
|
||||
itertools = "0.14.0"
|
||||
secure-string = "0.3.0"
|
||||
thiserror = "2.0.17"
|
||||
thiserror = "2.0.18"
|
||||
tokio = "1.49.0"
|
||||
tracing = "0.1.44"
|
||||
zbus = { version = "5.12.0", features = ["tokio"] }
|
||||
bitflags = "2.10.0"
|
||||
zbus = { version = "5.13.2", features = ["tokio"] }
|
||||
bitflags = "2.11.0"
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ rust-version.workspace = true
|
|||
publish = true
|
||||
|
||||
[dependencies]
|
||||
futures = "0.3.31"
|
||||
futures = "0.3.32"
|
||||
iced_futures = { git = "https://github.com/pop-os/libcosmic" }
|
||||
log = "0.4.29"
|
||||
tokio = "1.49.0"
|
||||
tokio-stream = "0.1.18"
|
||||
zbus = "5.12.0"
|
||||
zbus = "5.13.2"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ publish = true
|
|||
|
||||
[dependencies]
|
||||
cosmic-pipewire = { path = "../../crates/cosmic-pipewire" }
|
||||
futures = "0.3.31"
|
||||
futures = "0.3.32"
|
||||
intmap = "3.1.3"
|
||||
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false }
|
||||
numtoa = "1.0.0-alpha1"
|
||||
|
|
|
|||
|
|
@ -7,10 +7,10 @@ rust-version.workspace = true
|
|||
publish = true
|
||||
|
||||
[dependencies]
|
||||
futures = "0.3.31"
|
||||
futures = "0.3.32"
|
||||
iced_futures = { git = "https://github.com/pop-os/libcosmic" }
|
||||
log = "0.4.29"
|
||||
tokio = "1.49.0"
|
||||
tokio-stream = "0.1.18"
|
||||
upower_dbus = { git = "https://github.com/pop-os/dbus-settings-bindings" }
|
||||
zbus = "5.12.0"
|
||||
zbus = "5.13.2"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue