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