Cargo.toml

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