| 1 | [package] |
| 2 | name = "gardmd" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | license.workspace = true |
| 6 | description = "gar display manager daemon" |
| 7 | |
| 8 | [[bin]] |
| 9 | name = "gardmd" |
| 10 | path = "src/main.rs" |
| 11 | |
| 12 | [dependencies] |
| 13 | gardm-ipc = { workspace = true } |
| 14 | tokio = { workspace = true } |
| 15 | tracing = { workspace = true } |
| 16 | tracing-subscriber = { workspace = true } |
| 17 | anyhow = { workspace = true } |
| 18 | thiserror = { workspace = true } |
| 19 | serde = { workspace = true } |
| 20 | serde_json = { workspace = true } |
| 21 | toml = { workspace = true } |
| 22 | nix = { workspace = true } |
| 23 | pam = "0.8" |
| 24 | x11rb = { workspace = true } |
| 25 | clap = { workspace = true } |
| 26 | libc = "0.2" |
| 27 | sd-notify = "0.4" |
| 28 | zbus = "4" |