2020-10-15 16:32:07 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-lsp"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-10-19 09:09:44 +02:00
|
|
|
helix-core = { path = "../helix-core" }
|
2020-12-17 11:30:41 +01:00
|
|
|
|
2020-11-05 07:15:19 +01:00
|
|
|
once_cell = "1.4"
|
2020-10-19 09:09:44 +02:00
|
|
|
|
2021-04-21 06:36:32 +02:00
|
|
|
lsp-types = { version = "0.89", features = ["proposed"] }
|
2021-05-06 06:56:34 +02:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
tokio-stream = "0.1.5"
|
2021-05-06 10:15:49 +02:00
|
|
|
futures-executor = { version = "0.3" }
|
2020-10-18 11:01:06 +02:00
|
|
|
url = "2"
|
2020-10-23 07:33:09 +02:00
|
|
|
pathdiff = "0.2"
|
|
|
|
shellexpand = "2.0"
|
2020-10-18 11:01:06 +02:00
|
|
|
glob = "0.3"
|
|
|
|
anyhow = "1"
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-05-06 07:33:53 +02:00
|
|
|
# jsonrpc-core = { version = "17.1", default-features = false } # don't pull in all of futures
|
|
|
|
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc", default-features = false } # don't pull in all of futures
|
2021-05-08 04:51:18 +02:00
|
|
|
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
2020-12-17 11:30:41 +01:00
|
|
|
thiserror = "1.0"
|
|
|
|
log = "~0.4"
|