Cargo.toml
1[package]
2name = "cli"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/cli.rs"
9doctest = false
10
11[[bin]]
12name = "cli"
13path = "src/main.rs"
14
15[dependencies]
16anyhow = "1.0"
17clap = { version = "3.1", features = ["derive"] }
18dirs = "3.0"
19ipc-channel = "0.16"
20serde = { workspace = true }
21serde_derive = { workspace = true }
22
23[target.'cfg(target_os = "macos")'.dependencies]
24core-foundation = "0.9"
25core-services = "0.2"
26plist = "1.3"