2024-03-19 14:50:21 +00: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 18:16:23 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "zed-extension"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2024-03-19 14:50:21 +00:00
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
|
|
|
env_logger.workspace = true
|
2024-06-15 00:13:31 +00:00
|
|
|
extension = { workspace = true, features = ["no-webrtc"] }
|
2024-07-21 14:46:43 +00:00
|
|
|
fs.workspace = true
|
2024-09-18 21:29:34 +00:00
|
|
|
isahc_http_client.workspace = true
|
2024-03-19 14:50:21 +00:00
|
|
|
language.workspace = true
|
|
|
|
log.workspace = true
|
2024-03-19 21:26:06 +00:00
|
|
|
rpc.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-03-19 14:50:21 +00:00
|
|
|
theme.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
toml.workspace = true
|
|
|
|
tree-sitter.workspace = true
|
|
|
|
wasmtime.workspace = true
|