Cargo.toml

 1[package]
 2name = "lsp"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/lsp.rs"
 9doctest = false
10
11[features]
12test-support = ["async-pipe"]
13
14[dependencies]
15collections = { path = "../collections" }
16gpui = { path = "../gpui" }
17util = { path = "../util" }
18anyhow = "1.0"
19async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553", optional = true }
20futures = "0.3"
21log = { version = "0.4.16", features = ["kv_unstable_serde"] }
22lsp-types = "0.91"
23parking_lot = "0.11"
24postage = { version = "0.4.1", features = ["futures-traits"] }
25serde = { version = "1.0", features = ["derive", "rc"] }
26serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
27serde_json = { version = "1.0", features = ["raw_value"] }
28smol = "1.2"
29
30[dev-dependencies]
31gpui = { path = "../gpui", features = ["test-support"] }
32util = { path = "../util", features = ["test-support"] }
33async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553" }
34ctor = "0.1"
35env_logger = "0.9"
36unindent = "0.1.7"