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]
16collections = { path = "../collections" }
17gpui = { path = "../gpui" }
18util = { path = "../util" }
19
20anyhow.workspace = true
21async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553", optional = true }
22futures.workspace = true
23log.workspace = true
24lsp-types = { git = "https://github.com/zed-industries/lsp-types", branch = "updated-completion-list-item-defaults" }
25parking_lot.workspace = true
26postage.workspace = true
27serde.workspace = true
28serde_derive.workspace = true
29serde_json.workspace = true
30smol.workspace = true
31
32[dev-dependencies]
33gpui = { path = "../gpui", features = ["test-support"] }
34util = { path = "../util", features = ["test-support"] }
35
36async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553" }
37ctor.workspace = true
38env_logger.workspace = true
39unindent.workspace = true