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