| 1 | [package] |
| 2 | name = "gardm-greeter" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | license.workspace = true |
| 6 | description = "gar display manager greeter" |
| 7 | |
| 8 | [[bin]] |
| 9 | name = "gardm-greeter" |
| 10 | path = "src/main.rs" |
| 11 | |
| 12 | [[bin]] |
| 13 | name = "test-auth" |
| 14 | path = "src/bin/test-auth.rs" |
| 15 | |
| 16 | [dependencies] |
| 17 | gardm-ipc = { workspace = true } |
| 18 | tokio = { workspace = true } |
| 19 | tracing = { workspace = true } |
| 20 | tracing-subscriber = { workspace = true } |
| 21 | anyhow = { workspace = true } |
| 22 | thiserror = { workspace = true } |
| 23 | rpassword = { workspace = true } |
| 24 | serde = { workspace = true } |
| 25 | serde_json = { workspace = true } |
| 26 | toml = { workspace = true } |
| 27 | nix = { workspace = true } |
| 28 | shellexpand = { workspace = true } |
| 29 | |
| 30 | # X11 and graphics |
| 31 | x11rb = { workspace = true } |
| 32 | cairo-rs = { workspace = true } |
| 33 | pango = { workspace = true } |
| 34 | pangocairo = { workspace = true } |
| 35 | image = { workspace = true } |
| 36 | libc = { workspace = true } |