mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
27 lines
447 B
TOML
27 lines
447 B
TOML
[package]
|
|
name = "cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/cli.rs"
|
|
doctest = false
|
|
|
|
[[bin]]
|
|
name = "cli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap = { version = "3.1", features = ["derive"] }
|
|
dirs = "3.0"
|
|
ipc-channel = "0.16"
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation = "0.9"
|
|
core-services = "0.2"
|
|
plist = "1.3"
|