mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-24 15:18:02 +00:00
75f0326e54
We still aren't handling CLI requests in the app, but this lays the foundation for bi-directional communication. Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
20 lines
No EOL
342 B
TOML
20 lines
No EOL
342 B
TOML
[package]
|
|
name = "cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/cli.rs"
|
|
doctest = false
|
|
|
|
[[bin]]
|
|
name = "cli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
core-foundation = "0.9"
|
|
core-services = "0.2"
|
|
clap = { version = "3.1", features = ["derive"] }
|
|
ipc-channel = "0.16"
|
|
serde = { version = "1.0", features = ["derive"] } |