mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 13:10:54 +00:00
59ed535cdf
When bundled, we will retrieve it out of the `Resources` folder. Locally, we're expected to run `script/download-rust-analyzer` and put `vendor/bin` in our $PATH.
18 lines
401 B
TOML
18 lines
401 B
TOML
[package]
|
|
name = "lsp"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
gpui = { path = "../gpui" }
|
|
util = { path = "../util" }
|
|
anyhow = "1.0"
|
|
futures = "0.3"
|
|
lsp-types = "0.91"
|
|
parking_lot = "0.11"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0", features = ["raw_value"] }
|
|
smol = "1.2"
|
|
|
|
[dev-dependencies]
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|