Cargo.toml

 1[package]
 2name = "lsp"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/lsp.rs"
10doctest = false
11
12[features]
13test-support = ["async-pipe"]
14
15[dependencies]
16anyhow.workspace = true
17async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553", optional = true }
18collections = { path = "../collections" }
19futures.workspace = true
20gpui = { path = "../gpui" }
21log.workspace = true
22lsp-types = { git = "https://github.com/zed-industries/lsp-types", branch = "updated-completion-list-item-defaults" }
23parking_lot.workspace = true
24postage.workspace = true
25serde.workspace = true
26serde_derive.workspace = true
27serde_json.workspace = true
28smol.workspace = true
29util = { path = "../util" }
30
31[dev-dependencies]
32async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553" }
33ctor.workspace = true
34env_logger.workspace = true
35gpui = { path = "../gpui", features = ["test-support"] }
36unindent.workspace = true
37util = { path = "../util", features = ["test-support"] }