chore: update dependencies; including ron 0.9

This commit is contained in:
Michael Aaron Murphy 2025-03-19 20:29:11 +01:00
parent ab887aeeac
commit 92b2756e26
No known key found for this signature in database
GPG key ID: B2732D4240C9212C
15 changed files with 79 additions and 73 deletions

View file

@ -1,8 +1,8 @@
[package]
name = "libcosmic"
version = "0.1.0"
edition = "2021"
rust-version = "1.80"
edition = "2024"
rust-version = "1.85"
[lib]
name = "cosmic"
@ -97,41 +97,38 @@ async-std = [
[dependencies]
apply = "0.3.0"
ashpd = { version = "0.9.1", default-features = false, optional = true }
ashpd = { version = "0.9.2", default-features = false, optional = true }
async-fs = { version = "2.1", optional = true }
async-std = { version = "1.10", optional = true }
async-std = { version = "1.13", optional = true }
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "178eb0b", optional = true }
chrono = "0.4.35"
chrono = "0.4.40"
cosmic-config = { path = "cosmic-config" }
cosmic-settings-daemon = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
css-color = "0.2.5"
derive_setters = "0.1.5"
css-color = "0.2.8"
derive_setters = "0.1.6"
futures = "0.3"
image = { version = "0.25.5", default-features = false, features = [
"jpeg",
"png",
] }
lazy_static = "1.4.0"
libc = { version = "0.2.155", optional = true }
license = { version = "3.5.1", optional = true }
lazy_static = "1.5.0"
libc = { version = "0.2.171", optional = true }
license = { version = "3.6.0", optional = true }
mime = { version = "0.3.17", optional = true }
palette = "0.7.3"
rfd = { version = "0.14.0", default-features = false, features = [
palette = "0.7.6"
rfd = { version = "0.14.1", default-features = false, features = [
"xdg-portal",
], optional = true }
rustix = { version = "0.38.34", features = [
"pipe",
"process",
], optional = true }
serde = { version = "1.0.180", features = ["derive"] }
slotmap = "1.0.6"
smol = { version = "2.0.0", optional = true }
thiserror = "1.0.44"
tokio = { version = "1.24.2", optional = true }
rustix = { version = "1.0", features = ["pipe", "process"], optional = true }
serde = { version = "1.0.219", features = ["derive"] }
slotmap = "1.0.7"
smol = { version = "2.0.2", optional = true }
thiserror = "2.0.12"
tokio = { version = "1.44.1", optional = true }
tracing = "0.1.41"
unicode-segmentation = "1.6"
url = "2.4.0"
zbus = { version = "4.2.1", default-features = false, optional = true }
unicode-segmentation = "1.12"
url = "2.5.4"
zbus = { version = "4.4.0", default-features = false, optional = true }
[target.'cfg(unix)'.dependencies]
freedesktop-icons = { package = "cosmic-freedesktop-icons", git = "https://github.com/pop-os/freedesktop-icons" }
@ -190,7 +187,7 @@ git = "https://github.com/pop-os/cosmic-panel"
optional = true
[dependencies.ron]
version = "0.8"
version = "0.9"
optional = true
[dependencies.taffy]
@ -208,7 +205,7 @@ members = [
exclude = ["iced"]
[workspace.dependencies]
dirs = "5.0.1"
dirs = "6.0.0"
[patch."https://github.com/pop-os/libcosmic"]

View file

@ -11,24 +11,24 @@ subscription = ["iced_futures"]
[dependencies]
cosmic-settings-daemon = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
zbus = { version = "4.2.1", default-features = false, optional = true }
zbus = { version = "4.4.0", default-features = false, optional = true }
atomicwrites = { git = "https://github.com/jackpot51/rust-atomicwrites" }
calloop = { version = "0.14.0", optional = true }
notify = "6.0.0"
ron = "0.9.0-alpha.0"
serde = "1.0.152"
calloop = { version = "0.14.2", optional = true }
notify = "8.0.0"
ron = "0.9.0"
serde = "1.0.219"
cosmic-config-derive = { path = "../cosmic-config-derive/", optional = true }
iced = { path = "../iced/", default-features = false, optional = true }
iced_futures = { path = "../iced/futures/", default-features = false, optional = true }
once_cell = "1.19.0"
once_cell = "1.21.1"
futures-util = { version = "0.3", optional = true }
dirs.workspace = true
tokio = { version = "1.0", optional = true, features = ["time"] }
async-std = { version = "1.10", optional = true }
tokio = { version = "1.44", optional = true, features = ["time"] }
async-std = { version = "1.13", optional = true }
tracing = "0.1"
[target.'cfg(unix)'.dependencies]
xdg = "2.1"
xdg = "2.5"
[target.'cfg(windows)'.dependencies]
known-folders = "1.1.0"
known-folders = "1.2.0"

View file

@ -15,18 +15,18 @@ export = ["serde_json"]
no-default = []
[dependencies]
palette = { version = "0.7.3", features = ["serializing"] }
palette = { version = "0.7.6", features = ["serializing"] }
almost = "0.2"
serde = { version = "1.0.129", features = ["derive"] }
serde_json = { version = "1.0.64", optional = true, features = [
serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.140", optional = true, features = [
"preserve_order",
] }
ron = "0.9.0-alpha.0"
lazy_static = "1.4.0"
csscolorparser = { version = "0.6.2", features = ["serde"] }
ron = "0.9.0"
lazy_static = "1.5.0"
csscolorparser = { version = "0.7.0", features = ["serde"] }
cosmic-config = { path = "../cosmic-config/", default-features = false, features = [
"subscription",
"macro",
] }
dirs.workspace = true
thiserror = "1.0.5"
thiserror = "2.0.12"

View file

@ -4,10 +4,10 @@ version = "0.1.0"
edition = "2021"
[dependencies]
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-log = "0.2.0"
open = "5.3.0"
open = "5.3.2"
[dependencies.libcosmic]
path = "../../"

View file

@ -7,10 +7,10 @@ edition = "2021"
[dependencies]
once_cell = "1"
rust-embed = "8.0.0"
rust-embed = "8.6.0"
tracing = "0.1"
env_logger = "0.10.0"
log = "0.4.17"
env_logger = "0.10.2"
log = "0.4.26"
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic"

View file

@ -8,8 +8,8 @@ default = ["wayland"]
wayland = ["libcosmic/wayland"]
[dependencies]
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-log = "0.2.0"
[dependencies.libcosmic]

View file

@ -6,9 +6,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.35"
chrono = "0.4.40"
[dependencies.libcosmic]
path = "../../"
default-features = false
features = ["debug", "winit", "tokio", "xdg-portal", "wgpu"]
features = ["debug", "winit", "tokio", "xdg-portal", "wgpu"]

View file

@ -7,4 +7,4 @@ publish = false
[dependencies]
cosmic-config = { path = "../../cosmic-config" }
ron = "0.9.0-alpha.0"
ron = "0.9.0"

View file

@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"
[dependencies]
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-log = "0.2.0"
[dependencies.libcosmic]

View file

@ -7,12 +7,21 @@ publish = false
[dependencies]
apply = "0.3.0"
fraction = "0.14.0"
libcosmic = { path = "../..", features = ["debug", "winit", "tokio", "single-instance", "dbus-config", "a11y", "wgpu", "xdg-portal"] }
once_cell = "1.18"
slotmap = "1.0.6"
fraction = "0.15.3"
libcosmic = { path = "../..", features = [
"debug",
"winit",
"tokio",
"single-instance",
"dbus-config",
"a11y",
"wgpu",
"xdg-portal",
] }
once_cell = "1.21"
slotmap = "1.0.7"
env_logger = "0.10"
log = "0.4.17"
log = "0.4.26"
[dependencies.cosmic-time]
git = "https://github.com/pop-os/cosmic-time"

View file

@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"
[dependencies]
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
[dependencies.libcosmic]
path = "../../"

View file

@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"
[dependencies]
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-log = "0.2.0"
[dependencies.libcosmic]

View file

@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"
[dependencies]
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-log = "0.2.0"
[dependencies.libcosmic]

View file

@ -10,10 +10,10 @@ xdg-portal = ["libcosmic/xdg-portal"]
[dependencies]
apply = "0.3.0"
tokio = { version = "1.31", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
url = "2.4.0"
tokio = { version = "1.44", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
url = "2.5.4"
[dependencies.libcosmic]
features = ["debug", "winit", "multi-window", "wayland", "tokio"]

View file

@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"
[dependencies]
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-log = "0.2.0"
[dependencies.libcosmic]