2023-08-29 13:49:41 -07:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-comp-config"
|
2025-12-19 18:59:31 +01:00
|
|
|
version = "1.0.0"
|
2025-10-16 13:39:28 +02:00
|
|
|
edition = "2024"
|
2023-08-29 13:49:41 -07:00
|
|
|
|
|
|
|
|
[dependencies]
|
2026-05-24 11:40:51 +02:00
|
|
|
cosmic-config = { path = "../../libcosmic/cosmic-config" }
|
|
|
|
|
cosmic-randr-shell = { path = "../../cosmic-randr/shell", optional = true }
|
2026-04-24 14:14:59 -07:00
|
|
|
input = "0.10.0"
|
2025-10-16 13:39:28 +02:00
|
|
|
libdisplay-info = { version = "0.3.0", optional = true }
|
2023-08-29 13:49:41 -07:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2026-02-17 14:28:04 +01:00
|
|
|
ron = { version = "0.12", optional = true }
|
|
|
|
|
tracing = { version = "0.1.44", features = [
|
2025-08-19 16:51:37 -04:00
|
|
|
"max_level_debug",
|
|
|
|
|
"release_max_level_info",
|
|
|
|
|
], optional = true }
|
|
|
|
|
|
|
|
|
|
[features]
|
2026-03-04 19:15:34 -05:00
|
|
|
default = []
|
2025-08-19 16:51:37 -04:00
|
|
|
output = ["ron", "tracing"]
|
2025-08-20 17:59:06 -04:00
|
|
|
randr = ["cosmic-randr-shell", "output"]
|