Cargo.toml

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