Cargo.toml

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