1[package]
2name = "lsp"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/lsp.rs"
8
9[features]
10test-support = ["async-pipe"]
11
12[dependencies]
13gpui = { path = "../gpui" }
14util = { path = "../util" }
15anyhow = "1.0"
16async-pipe = { git = "https://github.com/routerify/async-pipe-rs", rev = "feeb77e83142a9ff837d0767652ae41bfc5d8e47", optional = true }
17futures = "0.3"
18log = "0.4"
19lsp-types = "0.91"
20parking_lot = "0.11"
21postage = { version = "0.4.1", features = ["futures-traits"] }
22serde = { version = "1.0", features = ["derive"] }
23serde_json = { version = "1.0", features = ["raw_value"] }
24smol = "1.2"
25
26[dev-dependencies]
27gpui = { path = "../gpui", features = ["test-support"] }
28util = { path = "../util", features = ["test-support"] }
29async-pipe = { git = "https://github.com/routerify/async-pipe-rs", rev = "feeb77e83142a9ff837d0767652ae41bfc5d8e47" }
30simplelog = "0.9"
31unindent = "0.1.7"