2024-03-19 17:50:21 +03:00
|
|
|
[package]
|
|
|
|
name = "extension_cli"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2024-03-20 21:16:23 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "zed-extension"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2024-03-19 17:50:21 +03:00
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
|
|
|
env_logger.workspace = true
|
|
|
|
fs.workspace = true
|
2024-06-15 03:13:31 +03:00
|
|
|
extension = { workspace = true, features = ["no-webrtc"] }
|
2024-03-19 17:50:21 +03:00
|
|
|
language.workspace = true
|
|
|
|
log.workspace = true
|
2024-03-20 00:26:06 +03:00
|
|
|
rpc.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-03-19 17:50:21 +03:00
|
|
|
theme.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
toml.workspace = true
|
|
|
|
tree-sitter.workspace = true
|
|
|
|
wasmtime.workspace = true
|