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