cosmic-settings/app/Cargo.toml

58 lines
1.5 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]
apply = "0.3.0"
2024-01-18 16:02:32 +01:00
async-channel = "2.1.1"
color-eyre = "0.6.2"
cosmic-bg-config = { workspace = true }
cosmic-randr-shell = { workspace = true }
cosmic-settings-wallpaper = { path = "../pages/wallpapers" }
cosmic-settings-page = { path = "../page" }
cosmic-settings-system = { path = "../pages/system" }
cosmic-settings-time = { path = "../pages/time" }
derivative = "2.2.0"
derive_setters = "0.1.6"
2023-05-26 16:52:05 +02:00
dirs = "5.0.1"
generator = "=0.7.5"
2024-01-18 16:02:32 +01:00
i18n-embed-fl = "0.7.0"
itertools = "0.12.0"
libcosmic = {workspace = true}
2023-12-22 16:42:56 +01:00
once_cell = "1.19.0"
regex = "1.10.3"
2024-01-18 16:02:32 +01:00
rust-embed = "8.2.0"
2023-12-22 16:42:56 +01:00
slotmap = "1.0.7"
tokio = "1.35.1"
downcast-rs = "1.2.0"
2023-08-29 14:28:05 -07:00
cosmic-comp-config = { workspace = true }
# TODO: migrate this dependency to the pages/desktop crate.
cosmic-panel-config = { workspace = true }
2023-12-22 16:42:56 +01:00
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
2023-06-05 23:55:37 -04:00
log = "0.4"
2023-12-22 16:42:56 +01:00
url = "2.5.0"
2023-06-05 23:55:37 -04:00
freedesktop-desktop-entry = "0.5.0"
2023-12-22 16:42:56 +01:00
notify = "6.1.1"
2023-06-05 23:55:37 -04:00
anyhow = "1.0"
2024-01-18 16:02:32 +01:00
image = "0.24.8"
serde = { version = "1.0.196", features = ["derive"] }
2024-03-06 15:05:11 -05:00
ashpd = { version = "0.7", default-features = false }
ron = "0.8"
static_init = "1.0.3"
2024-01-18 16:02:32 +01:00
clap = {version = "4.4.18", features = ["derive"] }
2023-12-22 16:42:56 +01:00
itoa = "1.0.10"
futures = { package = "futures-lite", version = "2.2.0" }
[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 = []