refactor(output config): move to config crate

this allows the greeter to easily sync to the user config
This commit is contained in:
Ashley Wulber 2025-08-19 16:51:37 -04:00 committed by Ashley Wulber
parent 4a385d5535
commit 416b66b776
17 changed files with 283 additions and 194 deletions

View file

@ -8,3 +8,12 @@ cosmic-config = { git = "https://github.com/pop-os/libcosmic/" }
input = "0.9.0"
libdisplay-info = { version = "0.2.0", optional = true }
serde = { version = "1", features = ["derive"] }
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]
default = ["output"]
output = ["ron", "tracing"]