mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-01 14:15:11 +00:00
2c8a6ee7cc
Fixes: #15599 Release Notes: - N/A --------- Co-authored-by: Mikayla <mikayla@zed.dev> Co-authored-by: Conrad <conrad@zed.dev>
31 lines
667 B
TOML
31 lines
667 B
TOML
[package]
|
|
name = "extension_cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "zed-extension"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap = { workspace = true, features = ["derive"] }
|
|
env_logger.workspace = true
|
|
extension = { workspace = true, features = ["no-webrtc"] }
|
|
fs.workspace = true
|
|
isahc_http_client.workspace = true
|
|
language.workspace = true
|
|
log.workspace = true
|
|
rpc.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
theme.workspace = true
|
|
tokio.workspace = true
|
|
toml.workspace = true
|
|
tree-sitter.workspace = true
|
|
wasmtime.workspace = true
|