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