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
21clap.workspace = true
22collections.workspace = true
23ipc-channel = "0.18"
24once_cell.workspace = true
25parking_lot.workspace = true
26paths.workspace = true
27release_channel.workspace = true
28serde.workspace = true
29util.workspace = true
30tempfile.workspace = true
31
32[target.'cfg(any(target_os = "linux", target_os = "freebsd"))'.dependencies]
33exec.workspace = true
34fork.workspace = true
35
36[target.'cfg(target_os = "macos")'.dependencies]
37core-foundation.workspace = true
38core-services = "0.2"
39plist = "1.3"