2022-04-15 14:55:26 +00:00
|
|
|
[package]
|
|
|
|
name = "cli"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2022-04-15 23:33:56 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/cli.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "cli"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-04-15 14:55:26 +00:00
|
|
|
[dependencies]
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2024-03-18 19:00:37 +00:00
|
|
|
clap.workspace = true
|
|
|
|
ipc-channel = "0.18"
|
2024-05-10 03:08:49 +00:00
|
|
|
once_cell.workspace = true
|
2024-06-24 18:55:30 +00:00
|
|
|
parking_lot.workspace = true
|
2024-06-17 23:27:42 +00:00
|
|
|
paths.workspace = true
|
2024-04-22 16:01:06 +00:00
|
|
|
release_channel.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|
2024-08-22 19:31:58 +00:00
|
|
|
tempfile.workspace = true
|
2022-04-19 20:42:33 +00:00
|
|
|
|
2024-05-10 03:08:49 +00:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
exec.workspace = true
|
|
|
|
fork.workspace = true
|
|
|
|
|
2022-04-19 20:42:33 +00:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-02-24 02:18:06 +00:00
|
|
|
core-foundation.workspace = true
|
2022-04-19 20:42:33 +00:00
|
|
|
core-services = "0.2"
|
2022-04-20 15:36:03 +00:00
|
|
|
plist = "1.3"
|