gardesk/garclip / 2538b3f

Browse files

garclipctl: add crate manifest

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
2538b3f52b9f5b28ee8108b60df5360dccce817c
Parents
c8a4405
Tree
5644edf

1 changed file

StatusFile+-
A garclipctl/Cargo.toml 19 0
garclipctl/Cargo.tomladded
@@ -0,0 +1,19 @@
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"