| 1 | [package] |
| 2 | name = "garclipctl" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | authors.workspace = true |
| 6 | license.workspace = true |
| 7 | description = "CLI control tool for garclip clipboard manager" |
| 8 | |
| 9 | [dependencies] |
| 10 | garclip = { path = "../garclip" } |
| 11 | tokio.workspace = true |
| 12 | serde.workspace = true |
| 13 | serde_json.workspace = true |
| 14 | anyhow.workspace = true |
| 15 | clap.workspace = true |
| 16 | |
| 17 | [[bin]] |
| 18 | name = "garclipctl" |
| 19 | path = "src/main.rs" |