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_json = { version = "1.0", features = ["raw_value"] }
27smol = "1.2"
28
29[dev-dependencies]
30gpui = { path = "../gpui", features = ["test-support"] }
31util = { path = "../util", features = ["test-support"] }
32async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553" }
33ctor = "0.1"
34env_logger = "0.9"
35unindent = "0.1.7"