mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-28 13:18:04 +00:00
22ac178f9d
Some checks are pending
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Docs / Check formatting (push) Waiting to run
Release Notes: - N/A
31 lines
691 B
TOML
31 lines
691 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
|
|
language.workspace = true
|
|
log.workspace = true
|
|
reqwest_client.workspace = true
|
|
rpc.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
theme.workspace = true
|
|
tokio = { workspace = true, features = ["full"] }
|
|
toml.workspace = true
|
|
tree-sitter.workspace = true
|
|
wasmtime.workspace = true
|