| 1 | [package] |
| 2 | name = "garnotifyctl" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | license.workspace = true |
| 6 | repository.workspace = true |
| 7 | description = "Control utility for garnotify" |
| 8 | |
| 9 | [dependencies] |
| 10 | # Serialization |
| 11 | serde = { workspace = true } |
| 12 | serde_json = { workspace = true } |
| 13 | |
| 14 | # CLI |
| 15 | clap = { workspace = true } |
| 16 | |
| 17 | # Logging |
| 18 | tracing = { workspace = true } |
| 19 | tracing-subscriber = { workspace = true } |
| 20 | |
| 21 | # Error handling |
| 22 | anyhow = { workspace = true } |
| 23 | |
| 24 | # Utilities |
| 25 | dirs = { workspace = true } |