chore: update dependencies
This commit is contained in:
parent
34326b3925
commit
9abc4d483b
3 changed files with 30 additions and 25 deletions
35
Cargo.toml
35
Cargo.toml
|
|
@ -125,7 +125,7 @@ x11 = ["iced/x11", "iced_winit/x11"]
|
||||||
apply = "0.3.0"
|
apply = "0.3.0"
|
||||||
ashpd = { version = "0.12.3", default-features = false, optional = true }
|
ashpd = { version = "0.12.3", default-features = false, optional = true }
|
||||||
async-fs = { version = "2.2", optional = true }
|
async-fs = { version = "2.2", optional = true }
|
||||||
async-std = { version = "1.13", optional = true }
|
async-std = { workspace = true, optional = true }
|
||||||
auto_enums = "0.8.8"
|
auto_enums = "0.8.8"
|
||||||
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "160b086", optional = true }
|
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "160b086", optional = true }
|
||||||
jiff = "0.2"
|
jiff = "0.2"
|
||||||
|
|
@ -150,31 +150,32 @@ image-extras = { version = "0.1.0", default-features = false, features = [
|
||||||
"xpm",
|
"xpm",
|
||||||
"xbm",
|
"xbm",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
libc = { version = "0.2.183", optional = true }
|
libc = { version = "0.2.186", optional = true }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
mime = { version = "0.3.17", optional = true }
|
mime = { version = "0.3.17", optional = true }
|
||||||
palette = "0.7.6"
|
palette.workspace = true
|
||||||
rfd = { version = "0.16.0", default-features = false, features = [
|
rfd = { version = "0.16.0", default-features = false, features = [
|
||||||
"xdg-portal",
|
"xdg-portal",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
rustix = { version = "1.1", features = ["pipe", "process"], optional = true }
|
rustix = { version = "1.1", features = ["pipe", "process"], optional = true }
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
slotmap = "1.1.1"
|
slotmap = "1.1.1"
|
||||||
smol = { version = "2.0.2", optional = true }
|
smol = { version = "2.0.2", optional = true }
|
||||||
thiserror = "2.0.18"
|
thiserror.workspace = true
|
||||||
taffy = { version = "0.9.2", features = ["grid"] }
|
taffy = { version = "0.9.2", features = ["grid"] }
|
||||||
tokio = { version = "1.50.0", optional = true }
|
tokio = { workspace = true, optional = true }
|
||||||
tracing = "0.1.44"
|
tracing.workspace = true
|
||||||
unicode-segmentation = "1.12"
|
unicode-segmentation = "1.13"
|
||||||
url = "2.5.8"
|
url = "2.5.8"
|
||||||
zbus = { version = "5.14.0", default-features = false, optional = true }
|
zbus = { workspace = true, optional = true }
|
||||||
float-cmp = "0.10.0"
|
float-cmp = "0.10.0"
|
||||||
|
ron = { workspace = true, 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.14.0", default-features = false }
|
zbus.workspace = true
|
||||||
|
|
||||||
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
|
[target.'cfg(all(unix, not(target_os = "macos")))'.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" }
|
||||||
|
|
@ -237,10 +238,6 @@ git = "https://github.com/pop-os/cosmic-panel"
|
||||||
# path = "../cosmic-panel/cosmic-panel-config"
|
# path = "../cosmic-panel/cosmic-panel-config"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[dependencies.ron]
|
|
||||||
version = "0.12"
|
|
||||||
optional = true
|
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"cosmic-config",
|
"cosmic-config",
|
||||||
|
|
@ -251,7 +248,15 @@ members = [
|
||||||
exclude = ["iced"]
|
exclude = ["iced"]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
dirs = "6.0.0"
|
async-std = "1.13"
|
||||||
|
dirs = "6.0"
|
||||||
|
palette = "0.7"
|
||||||
|
ron = "0.12"
|
||||||
|
serde = "1.0"
|
||||||
|
thiserror = "2.0"
|
||||||
|
tracing = "0.1"
|
||||||
|
tokio = "1.52"
|
||||||
|
zbus = {version = "5.15", default-features = false}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.27.0"
|
tempfile = "3.27.0"
|
||||||
|
|
|
||||||
|
|
@ -11,20 +11,20 @@ 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.14.0", default-features = false, optional = true }
|
zbus = { workspace = true, 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.4", optional = true }
|
calloop = { version = "0.14.4", optional = true }
|
||||||
notify = "8.2.0"
|
notify = "8.2.0"
|
||||||
ron = "0.12.0"
|
ron.workspace = true
|
||||||
serde = "1.0.228"
|
serde.workspace = true
|
||||||
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 }
|
||||||
futures-util = { version = "0.3", optional = true }
|
futures-util = { version = "0.3", optional = true }
|
||||||
dirs.workspace = true
|
dirs.workspace = true
|
||||||
tokio = { version = "1.50", optional = true, features = ["time"] }
|
tokio = { workspace = true, optional = true, features = ["time"] }
|
||||||
async-std = { version = "1.13", optional = true }
|
async-std = { workspace = true, optional = true }
|
||||||
tracing = "0.1"
|
tracing.workspace = true
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
xdg = "3.0"
|
xdg = "3.0"
|
||||||
|
|
|
||||||
|
|
@ -15,13 +15,13 @@ export = ["serde_json"]
|
||||||
no-default = []
|
no-default = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
palette = { version = "0.7.6", features = ["serializing"] }
|
palette = { workspace = true, features = ["serializing"] }
|
||||||
almost = "0.2"
|
almost = "0.2"
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = { version = "1.0.149", optional = true, features = [
|
serde_json = { version = "1.0.149", optional = true, features = [
|
||||||
"preserve_order",
|
"preserve_order",
|
||||||
] }
|
] }
|
||||||
ron = "0.12.0"
|
ron.workspace = true
|
||||||
csscolorparser = { version = "0.8.3", features = ["serde"] }
|
csscolorparser = { version = "0.8.3", features = ["serde"] }
|
||||||
cosmic-config = { path = "../cosmic-config/", default-features = false, features = [
|
cosmic-config = { path = "../cosmic-config/", default-features = false, features = [
|
||||||
"subscription",
|
"subscription",
|
||||||
|
|
@ -29,7 +29,7 @@ cosmic-config = { path = "../cosmic-config/", default-features = false, features
|
||||||
] }
|
] }
|
||||||
configparser = "3.1.0"
|
configparser = "3.1.0"
|
||||||
dirs.workspace = true
|
dirs.workspace = true
|
||||||
thiserror = "2.0.18"
|
thiserror.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
insta = "1.47.2"
|
insta = "1.47.2"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue