chore: update dependencies

This commit is contained in:
Vukašin Vojinović 2025-09-03 20:08:49 +02:00 committed by Michael Murphy
parent c5df9dcf88
commit b72b15d719
4 changed files with 28 additions and 32 deletions

View file

@ -99,50 +99,50 @@ async-std = [
[dependencies] [dependencies]
apply = "0.3.0" apply = "0.3.0"
ashpd = { version = "0.11.0", default-features = false, optional = true } ashpd = { version = "0.12.0", default-features = false, optional = true }
async-fs = { version = "2.1", optional = true } async-fs = { version = "2.1", optional = true }
async-std = { version = "1.13", optional = true } async-std = { version = "1.13", optional = true }
auto_enums = "0.8.7" auto_enums = "0.8.7"
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "6254f50", optional = true } cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "6254f50", optional = true }
chrono = "0.4.40" chrono = "0.4.41"
cosmic-config = { path = "cosmic-config" } cosmic-config = { path = "cosmic-config" }
cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon", optional = true } cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon", optional = true }
css-color = "0.2.8" css-color = "0.2.8"
derive_setters = "0.1.6" derive_setters = "0.1.8"
futures = "0.3" futures = "0.3"
image = { version = "0.25.5", default-features = false, features = [ image = { version = "0.25.8", default-features = false, features = [
"jpeg", "jpeg",
"png", "png",
] } ] }
lazy_static = "1.5.0" lazy_static = "1.5.0"
libc = { version = "0.2.171", optional = true } libc = { version = "0.2.175", optional = true }
license = { version = "3.6.0", optional = true } license = { version = "3.7.0", optional = true }
mime = { version = "0.3.17", optional = true } mime = { version = "0.3.17", optional = true }
palette = "0.7.6" palette = "0.7.6"
raw-window-handle = "0.6" raw-window-handle = "0.6"
rfd = { version = "0.15.3", default-features = false, features = [ rfd = { version = "0.15.4", default-features = false, features = [
"xdg-portal", "xdg-portal",
], optional = true } ], optional = true }
rustix = { version = "1.0", features = ["pipe", "process"], optional = true } rustix = { version = "1.0", features = ["pipe", "process"], optional = true }
serde = { version = "1.0.219", features = ["derive"] } serde = { version = "1.0.219", features = ["derive"] }
slotmap = "1.0.7" slotmap = "1.0.7"
smol = { version = "2.0.2", optional = true } smol = { version = "2.0.2", optional = true }
thiserror = "2.0.12" thiserror = "2.0.16"
tokio = { version = "1.44.1", optional = true } tokio = { version = "1.47.1", optional = true }
tracing = "0.1.41" tracing = "0.1.41"
unicode-segmentation = "1.12" unicode-segmentation = "1.12"
url = "2.5.4" url = "2.5.7"
zbus = { version = "5.7.1", default-features = false, optional = true } zbus = { version = "5.10.0", default-features = false, optional = true }
# Enable DBus feature on Linux targets # Enable DBus feature on Linux targets
[target.'cfg(target_os = "linux")'.dependencies] [target.'cfg(target_os = "linux")'.dependencies]
cosmic-config = { path = "cosmic-config", features = ["dbus"] } cosmic-config = { path = "cosmic-config", features = ["dbus"] }
cosmic-settings-daemon = { git = "https://github.com/pop-os/dbus-settings-bindings" } cosmic-settings-daemon = { git = "https://github.com/pop-os/dbus-settings-bindings" }
zbus = { version = "5.7.1", default-features = false } zbus = { version = "5.10.0", default-features = false }
[target.'cfg(unix)'.dependencies] [target.'cfg(unix)'.dependencies]
freedesktop-icons = { package = "cosmic-freedesktop-icons", git = "https://github.com/pop-os/freedesktop-icons" } freedesktop-icons = { package = "cosmic-freedesktop-icons", git = "https://github.com/pop-os/freedesktop-icons" }
freedesktop-desktop-entry = { version = "0.7.11", optional = true } freedesktop-desktop-entry = { version = "0.7.14", optional = true }
shlex = { version = "1.3.0", optional = true } shlex = { version = "1.3.0", optional = true }
[dependencies.cosmic-theme] [dependencies.cosmic-theme]
@ -197,7 +197,7 @@ git = "https://github.com/pop-os/cosmic-panel"
optional = true optional = true
[dependencies.ron] [dependencies.ron]
version = "0.9" version = "0.11"
optional = true optional = true
[dependencies.taffy] [dependencies.taffy]

View file

@ -11,24 +11,24 @@ subscription = ["iced_futures"]
[dependencies] [dependencies]
cosmic-settings-daemon = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true } cosmic-settings-daemon = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
zbus = { version = "5.7.1", default-features = false, optional = true } zbus = { version = "5.10.0", default-features = false, optional = true }
atomicwrites = { git = "https://github.com/jackpot51/rust-atomicwrites" } atomicwrites = { git = "https://github.com/jackpot51/rust-atomicwrites" }
calloop = { version = "0.14.2", optional = true } calloop = { version = "0.14.3", optional = true }
notify = "8.0.0" notify = "8.2.0"
ron = "0.9.0" ron = "0.11.0"
serde = "1.0.219" serde = "1.0.219"
cosmic-config-derive = { path = "../cosmic-config-derive/", optional = true } cosmic-config-derive = { path = "../cosmic-config-derive/", optional = true }
iced = { path = "../iced/", default-features = false, optional = true } iced = { path = "../iced/", default-features = false, optional = true }
iced_futures = { path = "../iced/futures/", default-features = false, optional = true } iced_futures = { path = "../iced/futures/", default-features = false, optional = true }
once_cell = "1.21.1" once_cell = "1.21.3"
futures-util = { version = "0.3", optional = true } futures-util = { version = "0.3", optional = true }
dirs.workspace = true dirs.workspace = true
tokio = { version = "1.44", optional = true, features = ["time"] } tokio = { version = "1.47", optional = true, features = ["time"] }
async-std = { version = "1.13", optional = true } async-std = { version = "1.13", optional = true }
tracing = "0.1" tracing = "0.1"
[target.'cfg(unix)'.dependencies] [target.'cfg(unix)'.dependencies]
xdg = "2.5" xdg = "3.0"
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
known-folders = "1.2.0" known-folders = "1.3.1"

View file

@ -140,9 +140,7 @@ impl Config {
pub fn system(name: &str, version: u64) -> Result<Self, Error> { pub fn system(name: &str, version: u64) -> Result<Self, Error> {
let path = sanitize_name(name)?.join(format!("v{version}")); let path = sanitize_name(name)?.join(format!("v{version}"));
#[cfg(unix)] #[cfg(unix)]
let system_path = xdg::BaseDirectories::with_prefix("cosmic") let system_path = xdg::BaseDirectories::with_prefix("cosmic").find_data_file(path);
.map_err(std::io::Error::from)?
.find_data_file(path);
#[cfg(windows)] #[cfg(windows)]
let system_path = let system_path =
@ -164,9 +162,7 @@ impl Config {
// Search data file, which provides default (e.g. /usr/share) // Search data file, which provides default (e.g. /usr/share)
#[cfg(unix)] #[cfg(unix)]
let system_path = xdg::BaseDirectories::with_prefix("cosmic") let system_path = xdg::BaseDirectories::with_prefix("cosmic").find_data_file(&path);
.map_err(std::io::Error::from)?
.find_data_file(&path);
#[cfg(windows)] #[cfg(windows)]
let system_path = let system_path =

View file

@ -18,15 +18,15 @@ no-default = []
palette = { version = "0.7.6", features = ["serializing"] } palette = { version = "0.7.6", features = ["serializing"] }
almost = "0.2" almost = "0.2"
serde = { version = "1.0.219", features = ["derive"] } serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.140", optional = true, features = [ serde_json = { version = "1.0.143", optional = true, features = [
"preserve_order", "preserve_order",
] } ] }
ron = "0.9.0" ron = "0.11.0"
lazy_static = "1.5.0" lazy_static = "1.5.0"
csscolorparser = { version = "0.7.0", features = ["serde"] } csscolorparser = { version = "0.7.2", features = ["serde"] }
cosmic-config = { path = "../cosmic-config/", default-features = false, features = [ cosmic-config = { path = "../cosmic-config/", default-features = false, features = [
"subscription", "subscription",
"macro", "macro",
] } ] }
dirs.workspace = true dirs.workspace = true
thiserror = "2.0.12" thiserror = "2.0.16"