cosmic-settings/cosmic-settings/Cargo.toml

65 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "cosmic-settings"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0"
rust-version = "1.65.0"
[dependencies]
anyhow = "1.0"
2024-05-17 02:46:05 -04:00
ashpd = { version = "0.8", default-features = false }
2024-01-18 16:02:32 +01:00
async-channel = "2.1.1"
chrono = "0.4.37"
clap = { version = "4.4.18", features = ["derive"] }
color-eyre = "0.6.2"
cosmic-bg-config.workspace = true
cosmic-comp-config.workspace = true
cosmic-panel-config.workspace = true
cosmic-randr-shell.workspace = true
cosmic-randr.workspace = true
cosmic-settings-page = { path = "../page" }
cosmic-settings-system = { path = "../pages/system" }
cosmic-settings-time = { path = "../pages/time" }
cosmic-settings-wallpaper = { path = "../pages/wallpapers" }
derivative = "2.2.0"
derive_setters = "0.1.6"
2023-05-26 16:52:05 +02:00
dirs = "5.0.1"
downcast-rs = "1.2.0"
freedesktop-desktop-entry = "0.5.0"
futures = { package = "futures-lite", version = "2.2.0" }
2024-05-26 13:50:10 -04:00
generator = "=0.8.1"
hostname-validator = "1.1.1"
2024-05-17 02:46:05 -04:00
hostname1-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings" }
2024-05-26 13:50:10 -04:00
i18n-embed-fl = "0.8.0"
image = "0.25"
2024-05-26 13:50:10 -04:00
itertools = "0.13.0"
itoa = "1.0.10"
libcosmic.workspace = true
notify = "6.1.1"
2023-12-22 16:42:56 +01:00
once_cell = "1.19.0"
regex = "1.10.3"
ron = "0.8"
2024-01-18 16:02:32 +01:00
rust-embed = "8.2.0"
serde = { version = "1.0.196", features = ["derive"] }
2023-12-22 16:42:56 +01:00
slotmap = "1.0.7"
static_init = "1.0.3"
sunrise = "1.0.1"
tokio.workspace = true
2023-12-22 16:42:56 +01:00
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
udev = "0.8.0"
2023-12-22 16:42:56 +01:00
url = "2.5.0"
xkb-data = "0.1.0"
2024-05-17 02:46:05 -04:00
zbus = { version = "4.2.1", features = ["tokio"] }
tachyonix = "0.2.1"
slab = "0.4.9"
[dependencies.i18n-embed]
2024-01-18 16:02:32 +01:00
version = "0.14.1"
features = ["fluent-system", "desktop-requester"]
2023-12-22 16:42:56 +01:00
[features]
default = []
2024-02-06 12:01:22 -05:00
wgpu = ["libcosmic/wgpu"]
2023-12-22 16:42:56 +01:00
test = []