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 = { version = "1.0", features = ["derive", "rc"] }
21
22[target.'cfg(target_os = "macos")'.dependencies]
23core-foundation = "0.9"
24core-services = "0.2"
25plist = "1.3"