gardesk/garnotify / a6161fe

Browse files

garnotifyctl: add package manifest

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
a6161fe04a342b727bae4f3c1a674068cefbc843
Parents
8c47bbb
Tree
9590d35

1 changed file

StatusFile+-
A garnotifyctl/Cargo.toml 25 0
garnotifyctl/Cargo.tomladded
@@ -0,0 +1,25 @@
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 }