31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
[package]
|
|
name = "cosmic-config"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["macro", "subscription"]
|
|
dbus = ["dep:zbus", "cosmic-settings-daemon", "futures-util", "subscription"]
|
|
macro = ["cosmic-config-derive"]
|
|
subscription = ["iced_futures"]
|
|
|
|
[dependencies]
|
|
zbus = { version = "3.14.1", default-features = false, optional = true }
|
|
atomicwrites = { git = "https://github.com/jackpot51/rust-atomicwrites" }
|
|
calloop = { version = "0.13.0", optional = true }
|
|
notify = "6.0.0"
|
|
ron = "0.8.0"
|
|
serde = "1.0.152"
|
|
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"
|
|
cosmic-settings-daemon = { git = "https://github.com/pop-os/dbus-settings-bindings", branch = "cosmic-settings-daemon", optional = true }
|
|
futures-util = { version = "0.3", optional = true }
|
|
dirs.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
xdg = "2.1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
known-folders = "1.1.0"
|