| 1 | [package] |
| 2 | name = "garshotctl" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | license.workspace = true |
| 6 | description = "CLI control tool for garshot daemon" |
| 7 | |
| 8 | [[bin]] |
| 9 | name = "garshotctl" |
| 10 | path = "src/main.rs" |
| 11 | |
| 12 | [dependencies] |
| 13 | # Async runtime |
| 14 | tokio = { workspace = true } |
| 15 | |
| 16 | # Serialization |
| 17 | serde = { workspace = true } |
| 18 | serde_json = { workspace = true } |
| 19 | |
| 20 | # CLI |
| 21 | clap = { workspace = true } |
| 22 | |
| 23 | # Error handling |
| 24 | anyhow = { workspace = true } |
| 25 | |
| 26 | # Logging |
| 27 | tracing = { workspace = true } |
| 28 | tracing-subscriber = { workspace = true } |
| 29 | |
| 30 | # IPC |
| 31 | garshot-ipc = { workspace = true } |