TOML · 373 bytes Raw Blame History
1 [package]
2 name = "garfieldctl"
3 version.workspace = true
4 edition.workspace = true
5 authors.workspace = true
6 license.workspace = true
7
8 [[bin]]
9 name = "garfieldctl"
10 path = "src/main.rs"
11
12 [dependencies]
13 # CLI
14 clap.workspace = true
15
16 # Error handling
17 anyhow.workspace = true
18
19 # Serialization
20 serde.workspace = true
21 serde_json.workspace = true
22
23 # IPC
24 garfield-ipc.workspace = true