chore: update dependencies

This commit is contained in:
Vukašin Vojinović 2026-01-28 00:49:48 +01:00 committed by Jeremy Soller
parent b71a7c9edf
commit cf19ac665f
5 changed files with 19 additions and 19 deletions

View file

@ -1,8 +1,8 @@
[package] [package]
name = "libcosmic" name = "libcosmic"
version = "0.1.0" version = "1.0.0"
edition = "2024" edition = "2024"
rust-version = "1.85" rust-version = "1.90"
[lib] [lib]
name = "cosmic" name = "cosmic"
@ -104,7 +104,7 @@ async-fs = { version = "2.2", 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 = "d0e95be", optional = true } cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "d0e95be", optional = true }
chrono = "0.4.42" chrono = "0.4.43"
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 }
# Internationalization # Internationalization
@ -126,26 +126,26 @@ log = "0.4"
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.4", 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 = { version = "1.0.228", 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.17" thiserror = "2.0.18"
taffy = { version = "0.9.2", features = ["grid"] } taffy = { version = "0.9.2", features = ["grid"] }
tokio = { version = "1.49.0", optional = true } tokio = { version = "1.49.0", optional = true }
tracing = "0.1.44" tracing = "0.1.44"
unicode-segmentation = "1.12" unicode-segmentation = "1.12"
url = "2.5.8" url = "2.5.8"
zbus = { version = "5.13.1", default-features = false, optional = true } zbus = { version = "5.13.2", 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.13.1", default-features = false } zbus = { version = "5.13.2", 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" }
@ -209,7 +209,7 @@ git = "https://github.com/pop-os/cosmic-panel"
optional = true optional = true
[dependencies.ron] [dependencies.ron]
version = "0.11" version = "0.12"
optional = true optional = true
[workspace] [workspace]

View file

@ -1,7 +1,7 @@
[package] [package]
name = "cosmic-config-derive" name = "cosmic-config-derive"
version = "0.1.0" version = "1.0.0"
edition = "2021" edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib] [lib]

View file

@ -106,7 +106,7 @@ fn impl_cosmic_config_entry_macro(ast: &syn::DeriveInput) -> TokenStream {
}) })
}); });
let gen = quote! { let generate = quote! {
impl CosmicConfigEntry for #name { impl CosmicConfigEntry for #name {
const VERSION: u64 = #version; const VERSION: u64 = #version;
@ -147,5 +147,5 @@ fn impl_cosmic_config_entry_macro(ast: &syn::DeriveInput) -> TokenStream {
} }
}; };
gen.into() generate.into()
} }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "cosmic-config" name = "cosmic-config"
version = "0.1.0" version = "1.0.0"
edition = "2024" edition = "2024"
[features] [features]
@ -11,11 +11,11 @@ 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.13.1", default-features = false, optional = true } zbus = { version = "5.13.2", 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.3", optional = true } calloop = { version = "0.14.3", optional = true }
notify = "8.2.0" notify = "8.2.0"
ron = "0.11.0" ron = "0.12.0"
serde = "1.0.228" serde = "1.0.228"
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 }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "cosmic-theme" name = "cosmic-theme"
version = "0.1.0" version = "1.0.0"
edition = "2024" edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -21,11 +21,11 @@ serde = { version = "1.0.228", 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.11.0" ron = "0.12.0"
csscolorparser = { version = "0.7.2", features = ["serde"] } csscolorparser = { version = "0.8.1", 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.17" thiserror = "2.0.18"