2024-02-06 15:03:07 -07:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-greeter-daemon"
|
|
|
|
|
version = "0.1.0"
|
2025-09-16 13:08:16 +02:00
|
|
|
edition = "2024"
|
2024-02-06 15:03:07 -07:00
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-09-12 17:39:37 -04:00
|
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
|
|
|
libc = "0.2"
|
2026-04-27 13:17:36 +02:00
|
|
|
nix = { version = "0.31", features = ["user"] }
|
2025-05-09 14:16:12 -06:00
|
|
|
cosmic-applets-config.workspace = true
|
2024-02-06 15:03:07 -07:00
|
|
|
cosmic-bg-config.workspace = true
|
2024-06-04 22:17:44 -06:00
|
|
|
cosmic-comp-config.workspace = true
|
2024-02-06 15:03:07 -07:00
|
|
|
cosmic-config.workspace = true
|
2024-02-06 15:48:57 -07:00
|
|
|
cosmic-theme.workspace = true
|
2025-09-12 17:39:37 -04:00
|
|
|
tracing.workspace = true
|
|
|
|
|
tracing-journald = { workspace = true, optional = true }
|
|
|
|
|
color-eyre.workspace = true
|
2024-02-06 15:03:07 -07:00
|
|
|
pwd.workspace = true
|
|
|
|
|
ron.workspace = true
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
zbus.workspace = true
|
2025-08-20 18:06:41 -04:00
|
|
|
cosmic-randr-shell.workspace = true
|
|
|
|
|
kdl.workspace = true
|
2026-03-13 08:35:18 -06:00
|
|
|
whitespace-conf = "1"
|
2025-08-20 18:06:41 -04:00
|
|
|
|
2024-02-06 15:03:07 -07:00
|
|
|
#TODO: reduce features
|
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2025-09-16 13:08:16 +02:00
|
|
|
xdg = "3.0"
|
2025-09-12 17:39:37 -04:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["systemd"]
|
|
|
|
|
systemd = ["tracing-journald"]
|