chore: update dependencies

Adapts color picker drawers to new designs.
This commit is contained in:
Vukašin Vojinović 2025-11-04 19:24:50 +01:00 committed by Michael Murphy
parent 29b4f9cae5
commit 1698734b28
15 changed files with 514 additions and 567 deletions

1007
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -8,7 +8,7 @@ rust-version = "1.85"
[workspace.dependencies] [workspace.dependencies]
cosmic-randr = { git = "https://github.com/pop-os/cosmic-randr" } cosmic-randr = { git = "https://github.com/pop-os/cosmic-randr" }
tokio = { version = "1.47.1", features = ["macros"] } tokio = { version = "1.48.0", features = ["macros"] }
[workspace.dependencies.libcosmic] [workspace.dependencies.libcosmic]
features = ["dbus-config", "multi-window", "winit", "tokio"] features = ["dbus-config", "multi-window", "winit", "tokio"]

View file

@ -12,7 +12,7 @@ ashpd = { version = "0.12", default-features = false, features = [
"tokio", "tokio",
], optional = true } ], optional = true }
chrono = "0.4.42" chrono = "0.4.42"
clap = { version = "4.5.47", features = ["derive"] } clap = { version = "4.5.51", features = ["derive"] }
color-eyre = "0.6.5" color-eyre = "0.6.5"
cosmic-bg-config.workspace = true cosmic-bg-config.workspace = true
cosmic-comp-config = { workspace = true, optional = true } cosmic-comp-config = { workspace = true, optional = true }
@ -38,7 +38,7 @@ cosmic-settings-daemon-config = { git = "https://github.com/pop-os/cosmic-settin
derive_setters = "0.1.8" derive_setters = "0.1.8"
dirs = "6.0.0" dirs = "6.0.0"
eyre = "0.6.12" eyre = "0.6.12"
freedesktop-desktop-entry = "0.7.14" freedesktop-desktop-entry = "0.7.19"
futures = "0.3.31" futures = "0.3.31"
hostname-validator = "1.1.1" hostname-validator = "1.1.1"
hostname1-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true } hostname1-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
@ -50,7 +50,7 @@ image = { version = "0.25", default-features = false, features = [
"webp", "webp",
"hdr", "hdr",
] } ] }
indexmap = "2.11.1" indexmap = "2.12.0"
itertools = "0.14.0" itertools = "0.14.0"
itoa = "1.0.15" itoa = "1.0.15"
libcosmic.workspace = true libcosmic.workspace = true
@ -58,12 +58,12 @@ locale1 = { git = "https://github.com/pop-os/dbus-settings-bindings", optional =
mime-apps = { package = "cosmic-mime-apps", git = "https://github.com/pop-os/cosmic-mime-apps", optional = true } mime-apps = { package = "cosmic-mime-apps", git = "https://github.com/pop-os/cosmic-mime-apps", optional = true }
# TODO: updating notify beyond this hangs the app # TODO: updating notify beyond this hangs the app
notify = "6.1.1" notify = "6.1.1"
regex = "1.11.2" regex = "1.12.2"
ron = "0.11" ron = "0.11"
rust-embed = "8.7.2" rust-embed = "8.9.0"
sctk = { workspace = true, optional = true } sctk = { workspace = true, optional = true }
secure-string = "0.3.0" secure-string = "0.3.0"
serde = { version = "1.0.219", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
slab = "0.4.11" slab = "0.4.11"
slotmap = "1.0.7" slotmap = "1.0.7"
static_init = "1.0.4" static_init = "1.0.4"
@ -78,15 +78,15 @@ upower_dbus = { git = "https://github.com/pop-os/dbus-settings-bindings", option
bluez-zbus = { 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.7" url = "2.5.7"
xkb-data = "0.2.1" xkb-data = "0.2.1"
xkeysym = { version = "0.2.0", optional = true } xkeysym = { version = "0.2.1", optional = true }
zbus = { version = "5.11.0", default-features = false, features = [ zbus = { version = "5.12.0", default-features = false, features = [
"tokio", "tokio",
], optional = true } ], optional = true }
zbus_polkit = { version = "5.0.0", optional = true } zbus_polkit = { version = "5.0.0", optional = true }
fontdb = "0.23.0" fontdb = "0.23.0"
mime = "0.3.17" mime = "0.3.17"
rustix = { version = "1.1.2", features = ["process"] } rustix = { version = "1.1.2", features = ["process"] }
gettext-rs = { version = "0.7.2", features = [ gettext-rs = { version = "0.7.7", features = [
"gettext-system", "gettext-system",
], optional = true } ], optional = true }
async-fn-stream = "0.3" async-fn-stream = "0.3"
@ -94,7 +94,7 @@ num-traits = "0.2"
pwhash = "1" pwhash = "1"
[dependencies.icu] [dependencies.icu]
version = "2.0.0" version = "2.1.1"
features = ["compiled_data"] features = ["compiled_data"]
[dependencies.i18n-embed] [dependencies.i18n-embed]

View file

@ -332,7 +332,7 @@ impl Content {
.map(crate::pages::Message::Appearance), .map(crate::pages::Message::Appearance),
crate::pages::Message::CloseContextDrawer, crate::pages::Message::CloseContextDrawer,
) )
.title(fl!("window-hint-accent")), .header(text::title4(fl!("window-hint-accent"))),
ContextView::ApplicationBackground => context_drawer( ContextView::ApplicationBackground => context_drawer(
color_picker_context_view( color_picker_context_view(
@ -344,7 +344,7 @@ impl Content {
.map(crate::pages::Message::Appearance), .map(crate::pages::Message::Appearance),
crate::pages::Message::CloseContextDrawer, crate::pages::Message::CloseContextDrawer,
) )
.title(fl!("app-background")), .header(text::title4(fl!("app-background"))),
ContextView::ContainerBackground => context_drawer( ContextView::ContainerBackground => context_drawer(
color_picker_context_view( color_picker_context_view(
@ -356,7 +356,7 @@ impl Content {
.map(crate::pages::Message::Appearance), .map(crate::pages::Message::Appearance),
crate::pages::Message::CloseContextDrawer, crate::pages::Message::CloseContextDrawer,
) )
.title(fl!("container-background")), .header(text::title4(fl!("container-background"))),
ContextView::ControlComponent => context_drawer( ContextView::ControlComponent => context_drawer(
color_picker_context_view( color_picker_context_view(
@ -368,7 +368,7 @@ impl Content {
.map(crate::pages::Message::Appearance), .map(crate::pages::Message::Appearance),
crate::pages::Message::CloseContextDrawer, crate::pages::Message::CloseContextDrawer,
) )
.title(fl!("control-tint")), .header(text::title4(fl!("control-tint"))),
ContextView::CustomAccent => context_drawer( ContextView::CustomAccent => context_drawer(
color_picker_context_view( color_picker_context_view(
@ -380,7 +380,7 @@ impl Content {
.map(crate::pages::Message::Appearance), .map(crate::pages::Message::Appearance),
crate::pages::Message::CloseContextDrawer, crate::pages::Message::CloseContextDrawer,
) )
.title(fl!("accent-color")), .header(text::title4(fl!("accent-color"))),
ContextView::InterfaceText => context_drawer( ContextView::InterfaceText => context_drawer(
color_picker_context_view( color_picker_context_view(
@ -392,7 +392,7 @@ impl Content {
.map(crate::pages::Message::Appearance), .map(crate::pages::Message::Appearance),
crate::pages::Message::CloseContextDrawer, crate::pages::Message::CloseContextDrawer,
) )
.title(fl!("text-tint")), .header(text::title4(fl!("text-tint"))),
ContextView::SystemFont => context_drawer( ContextView::SystemFont => context_drawer(
self.font_config self.font_config

View file

@ -5,7 +5,7 @@ edition = "2024"
[dependencies] [dependencies]
derive_setters = "0.1.8" derive_setters = "0.1.8"
regex = "1.11.2" regex = "1.12.2"
slotmap = "1.0.7" slotmap = "1.0.7"
libcosmic = { workspace = true } libcosmic = { workspace = true }
downcast-rs = "2.0.2" downcast-rs = "2.0.2"

View file

@ -9,10 +9,10 @@ rust-version.workspace = true
[dependencies] [dependencies]
byte-unit = "5.1.6" byte-unit = "5.1.6"
const_format = "0.2.34" const_format = "0.2.35"
concat-in-place = "1.1.0" concat-in-place = "1.1.0"
sysinfo = "0.36.1" sysinfo = "0.36.1"
memchr = "2.7.5" memchr = "2.7.6"
[dependencies.bumpalo] [dependencies.bumpalo]
version = "3.19.0" version = "3.19.0"

View file

@ -19,7 +19,7 @@ futures-lite = "2.6.1"
futures-util = "0.3.31" futures-util = "0.3.31"
image = "0.25.8" image = "0.25.8"
infer = "0.19.0" infer = "0.19.0"
jxl-oxide = { version = "0.12.4", features = ["image"] } jxl-oxide = { version = "0.12.5", features = ["image"] }
tokio = { workspace = true, features = ["sync"] } tokio = { workspace = true, features = ["sync"] }
tracing = "0.1.41" tracing = "0.1.41"
walkdir = "=2.5.0" walkdir = "=2.5.0"

View file

@ -12,5 +12,5 @@ iced_futures = { git = "https://github.com/pop-os/libcosmic" }
num-derive = "0.4.2" num-derive = "0.4.2"
num-traits = "0.2.19" num-traits = "0.2.19"
sctk = { git = "https://github.com/smithay/client-toolkit/", package = "smithay-client-toolkit" } sctk = { git = "https://github.com/smithay/client-toolkit/", package = "smithay-client-toolkit" }
tokio = "1.47.1" tokio = "1.48.0"
tracing = "0.1.41" tracing = "0.1.41"

View file

@ -10,6 +10,6 @@ publish = true
cosmic-dbus-a11y = { git = "https://github.com/pop-os/dbus-settings-bindings" } cosmic-dbus-a11y = { git = "https://github.com/pop-os/dbus-settings-bindings" }
futures = "0.3.31" futures = "0.3.31"
iced_futures = { git = "https://github.com/pop-os/libcosmic" } iced_futures = { git = "https://github.com/pop-os/libcosmic" }
tokio = "1.47.1" tokio = "1.48.0"
tracing = "0.1.41" tracing = "0.1.41"
zbus = "5.11.0" zbus = "5.12.0"

View file

@ -11,4 +11,4 @@ futures = "0.3.31"
iced_futures = { git = "https://github.com/pop-os/libcosmic" } iced_futures = { git = "https://github.com/pop-os/libcosmic" }
log = "0.4.28" log = "0.4.28"
rustix = "1.1.2" rustix = "1.1.2"
tokio = "1.47.1" tokio = "1.48.0"

View file

@ -10,6 +10,6 @@ publish = true
bluez-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings" } bluez-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings" }
futures = "0.3.31" futures = "0.3.31"
iced_futures = { git = "https://github.com/pop-os/libcosmic" } iced_futures = { git = "https://github.com/pop-os/libcosmic" }
tokio = "1.47.1" tokio = "1.48.0"
tracing = "0.1.41" tracing = "0.1.41"
zbus = "5.11.0" zbus = "5.12.0"

View file

@ -13,6 +13,6 @@ iced_futures = { git = "https://github.com/pop-os/libcosmic" }
itertools = "0.14.0" itertools = "0.14.0"
secure-string = "0.3.0" secure-string = "0.3.0"
thiserror = "2.0.17" thiserror = "2.0.17"
tokio = "1.47.1" tokio = "1.48.0"
tracing = "0.1.41" tracing = "0.1.41"
zbus = "5.11.0" zbus = "5.12.0"

View file

@ -9,6 +9,6 @@ publish = true
futures = "0.3.31" futures = "0.3.31"
iced_futures = { git = "https://github.com/pop-os/libcosmic" } iced_futures = { git = "https://github.com/pop-os/libcosmic" }
log = "0.4.28" log = "0.4.28"
tokio = "1.47.1" tokio = "1.48.0"
tokio-stream = "0.1.17" tokio-stream = "0.1.17"
zbus = "5.11.0" zbus = "5.12.0"

View file

@ -7,13 +7,13 @@ license = "MPL-2.0"
publish = true publish = true
[dependencies] [dependencies]
async-fn-stream = "0.3.1" async-fn-stream = "0.3.2"
futures = "0.3.31" futures = "0.3.31"
indexmap = "2.11.4" indexmap = "2.12.0"
libcosmic = { git = "https://github.com/pop-os/libcosmic" } libcosmic = { git = "https://github.com/pop-os/libcosmic" }
libpulse-binding = "2.30.1" libpulse-binding = "2.30.1"
log = "0.4.28" log = "0.4.28"
pipewire = "0.8" pipewire = "0.8"
rustix = "1.0.8" rustix = "1.1.2"
tokio = "1.47.1" tokio = "1.48.0"
tracing = "0.1.41" tracing = "0.1.41"

View file

@ -10,7 +10,7 @@ publish = true
futures = "0.3.31" futures = "0.3.31"
iced_futures = { git = "https://github.com/pop-os/libcosmic" } iced_futures = { git = "https://github.com/pop-os/libcosmic" }
log = "0.4.28" log = "0.4.28"
tokio = "1.47.1" tokio = "1.48.0"
tokio-stream = "0.1.17" tokio-stream = "0.1.17"
upower_dbus = { git = "https://github.com/pop-os/dbus-settings-bindings" } upower_dbus = { git = "https://github.com/pop-os/dbus-settings-bindings" }
zbus = "5.11.0" zbus = "5.12.0"