2023-08-29 13:49:41 -07:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-comp-config"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-20 16:52:44 -08:00
|
|
|
cosmic-config = { git = "https://github.com/pop-os/libcosmic/" }
|
2025-09-17 17:35:23 +02:00
|
|
|
cosmic-randr-shell = { git = "https://github.com/pop-os/cosmic-randr/", optional = true }
|
2024-02-01 15:38:05 +01:00
|
|
|
input = "0.9.0"
|
2025-01-31 14:13:33 -08:00
|
|
|
libdisplay-info = { version = "0.2.0", optional = true }
|
2023-08-29 13:49:41 -07:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2025-08-19 16:51:37 -04:00
|
|
|
ron = { version = "0.9.0-alpha.0", optional = true }
|
|
|
|
|
tracing = { version = "0.1.37", features = [
|
|
|
|
|
"max_level_debug",
|
|
|
|
|
"release_max_level_info",
|
|
|
|
|
], optional = true }
|
|
|
|
|
|
|
|
|
|
[features]
|
2025-08-26 10:44:13 -04: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"]
|