mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
580bad2042
Co-Authored-By: Nathan Sobo <nathan@zed.dev> Co-Authored-By: Max Brunsfeld <max@zed.dev>
23 lines
552 B
TOML
23 lines
552 B
TOML
[package]
|
|
name = "lsp"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
gpui = { path = "../gpui" }
|
|
util = { path = "../util" }
|
|
anyhow = "1.0"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
lsp-types = "0.91"
|
|
parking_lot = "0.11"
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
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"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
unindent = "0.1.7"
|