Skip to content

Commit 1698734

Browse files
git-f0xmmstick
authored andcommitted
chore: update dependencies
Adapts color picker drawers to new designs.
1 parent 29b4f9c commit 1698734

File tree

15 files changed

+514
-567
lines changed

15 files changed

+514
-567
lines changed

Cargo.lock

Lines changed: 477 additions & 530 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rust-version = "1.85"
88

99
[workspace.dependencies]
1010
cosmic-randr = { git = "https://github.com/pop-os/cosmic-randr" }
11-
tokio = { version = "1.47.1", features = ["macros"] }
11+
tokio = { version = "1.48.0", features = ["macros"] }
1212

1313
[workspace.dependencies.libcosmic]
1414
features = ["dbus-config", "multi-window", "winit", "tokio"]

cosmic-settings/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ashpd = { version = "0.12", default-features = false, features = [
1212
"tokio",
1313
], optional = true }
1414
chrono = "0.4.42"
15-
clap = { version = "4.5.47", features = ["derive"] }
15+
clap = { version = "4.5.51", features = ["derive"] }
1616
color-eyre = "0.6.5"
1717
cosmic-bg-config.workspace = true
1818
cosmic-comp-config = { workspace = true, optional = true }
@@ -38,7 +38,7 @@ cosmic-settings-daemon-config = { git = "https://github.com/pop-os/cosmic-settin
3838
derive_setters = "0.1.8"
3939
dirs = "6.0.0"
4040
eyre = "0.6.12"
41-
freedesktop-desktop-entry = "0.7.14"
41+
freedesktop-desktop-entry = "0.7.19"
4242
futures = "0.3.31"
4343
hostname-validator = "1.1.1"
4444
hostname1-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
@@ -50,20 +50,20 @@ image = { version = "0.25", default-features = false, features = [
5050
"webp",
5151
"hdr",
5252
] }
53-
indexmap = "2.11.1"
53+
indexmap = "2.12.0"
5454
itertools = "0.14.0"
5555
itoa = "1.0.15"
5656
libcosmic.workspace = true
5757
locale1 = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
5858
mime-apps = { package = "cosmic-mime-apps", git = "https://github.com/pop-os/cosmic-mime-apps", optional = true }
5959
# TODO: updating notify beyond this hangs the app
6060
notify = "6.1.1"
61-
regex = "1.11.2"
61+
regex = "1.12.2"
6262
ron = "0.11"
63-
rust-embed = "8.7.2"
63+
rust-embed = "8.9.0"
6464
sctk = { workspace = true, optional = true }
6565
secure-string = "0.3.0"
66-
serde = { version = "1.0.219", features = ["derive"] }
66+
serde = { version = "1.0.228", features = ["derive"] }
6767
slab = "0.4.11"
6868
slotmap = "1.0.7"
6969
static_init = "1.0.4"
@@ -78,23 +78,23 @@ upower_dbus = { git = "https://github.com/pop-os/dbus-settings-bindings", option
7878
bluez-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
7979
url = "2.5.7"
8080
xkb-data = "0.2.1"
81-
xkeysym = { version = "0.2.0", optional = true }
82-
zbus = { version = "5.11.0", default-features = false, features = [
81+
xkeysym = { version = "0.2.1", optional = true }
82+
zbus = { version = "5.12.0", default-features = false, features = [
8383
"tokio",
8484
], optional = true }
8585
zbus_polkit = { version = "5.0.0", optional = true }
8686
fontdb = "0.23.0"
8787
mime = "0.3.17"
8888
rustix = { version = "1.1.2", features = ["process"] }
89-
gettext-rs = { version = "0.7.2", features = [
89+
gettext-rs = { version = "0.7.7", features = [
9090
"gettext-system",
9191
], optional = true }
9292
async-fn-stream = "0.3"
9393
num-traits = "0.2"
9494
pwhash = "1"
9595

9696
[dependencies.icu]
97-
version = "2.0.0"
97+
version = "2.1.1"
9898
features = ["compiled_data"]
9999

100100
[dependencies.i18n-embed]

cosmic-settings/src/pages/desktop/appearance/drawer.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ impl Content {
332332
.map(crate::pages::Message::Appearance),
333333
crate::pages::Message::CloseContextDrawer,
334334
)
335-
.title(fl!("window-hint-accent")),
335+
.header(text::title4(fl!("window-hint-accent"))),
336336

337337
ContextView::ApplicationBackground => context_drawer(
338338
color_picker_context_view(
@@ -344,7 +344,7 @@ impl Content {
344344
.map(crate::pages::Message::Appearance),
345345
crate::pages::Message::CloseContextDrawer,
346346
)
347-
.title(fl!("app-background")),
347+
.header(text::title4(fl!("app-background"))),
348348

349349
ContextView::ContainerBackground => context_drawer(
350350
color_picker_context_view(
@@ -356,7 +356,7 @@ impl Content {
356356
.map(crate::pages::Message::Appearance),
357357
crate::pages::Message::CloseContextDrawer,
358358
)
359-
.title(fl!("container-background")),
359+
.header(text::title4(fl!("container-background"))),
360360

361361
ContextView::ControlComponent => context_drawer(
362362
color_picker_context_view(
@@ -368,7 +368,7 @@ impl Content {
368368
.map(crate::pages::Message::Appearance),
369369
crate::pages::Message::CloseContextDrawer,
370370
)
371-
.title(fl!("control-tint")),
371+
.header(text::title4(fl!("control-tint"))),
372372

373373
ContextView::CustomAccent => context_drawer(
374374
color_picker_context_view(
@@ -380,7 +380,7 @@ impl Content {
380380
.map(crate::pages::Message::Appearance),
381381
crate::pages::Message::CloseContextDrawer,
382382
)
383-
.title(fl!("accent-color")),
383+
.header(text::title4(fl!("accent-color"))),
384384

385385
ContextView::InterfaceText => context_drawer(
386386
color_picker_context_view(
@@ -392,7 +392,7 @@ impl Content {
392392
.map(crate::pages::Message::Appearance),
393393
crate::pages::Message::CloseContextDrawer,
394394
)
395-
.title(fl!("text-tint")),
395+
.header(text::title4(fl!("text-tint"))),
396396

397397
ContextView::SystemFont => context_drawer(
398398
self.font_config

page/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2024"
55

66
[dependencies]
77
derive_setters = "0.1.8"
8-
regex = "1.11.2"
8+
regex = "1.12.2"
99
slotmap = "1.0.7"
1010
libcosmic = { workspace = true }
1111
downcast-rs = "2.0.2"

pages/system/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ rust-version.workspace = true
99

1010
[dependencies]
1111
byte-unit = "5.1.6"
12-
const_format = "0.2.34"
12+
const_format = "0.2.35"
1313
concat-in-place = "1.1.0"
1414
sysinfo = "0.36.1"
15-
memchr = "2.7.5"
15+
memchr = "2.7.6"
1616

1717
[dependencies.bumpalo]
1818
version = "3.19.0"

pages/wallpapers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ futures-lite = "2.6.1"
1919
futures-util = "0.3.31"
2020
image = "0.25.8"
2121
infer = "0.19.0"
22-
jxl-oxide = { version = "0.12.4", features = ["image"] }
22+
jxl-oxide = { version = "0.12.5", features = ["image"] }
2323
tokio = { workspace = true, features = ["sync"] }
2424
tracing = "0.1.41"
2525
walkdir = "=2.5.0"

subscriptions/a11y-manager/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ iced_futures = { git = "https://github.com/pop-os/libcosmic" }
1212
num-derive = "0.4.2"
1313
num-traits = "0.2.19"
1414
sctk = { git = "https://github.com/smithay/client-toolkit/", package = "smithay-client-toolkit" }
15-
tokio = "1.47.1"
15+
tokio = "1.48.0"
1616
tracing = "0.1.41"

subscriptions/accessibility/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ publish = true
1010
cosmic-dbus-a11y = { git = "https://github.com/pop-os/dbus-settings-bindings" }
1111
futures = "0.3.31"
1212
iced_futures = { git = "https://github.com/pop-os/libcosmic" }
13-
tokio = "1.47.1"
13+
tokio = "1.48.0"
1414
tracing = "0.1.41"
15-
zbus = "5.11.0"
15+
zbus = "5.12.0"

subscriptions/airplane-mode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ futures = "0.3.31"
1111
iced_futures = { git = "https://github.com/pop-os/libcosmic" }
1212
log = "0.4.28"
1313
rustix = "1.1.2"
14-
tokio = "1.47.1"
14+
tokio = "1.48.0"

0 commit comments

Comments
 (0)