21 lines
604 B
TOML
21 lines
604 B
TOML
[package]
|
|
name = "cosmic-comp-config"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
cosmic-config = { path = "../../libcosmic/cosmic-config" }
|
|
cosmic-randr-shell = { path = "../../cosmic-randr/shell", optional = true }
|
|
input = "0.10.0"
|
|
libdisplay-info = { version = "0.3.0", optional = true }
|
|
serde = { version = "1", features = ["derive"] }
|
|
ron = { version = "0.12", optional = true }
|
|
tracing = { version = "0.1.44", features = [
|
|
"max_level_debug",
|
|
"release_max_level_info",
|
|
], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
output = ["ron", "tracing"]
|
|
randr = ["cosmic-randr-shell", "output"]
|