helix-mods/helix-lsp/Cargo.toml

26 lines
783 B
TOML
Raw Normal View History

2020-10-15 16:32:07 +02:00
[package]
name = "helix-lsp"
2021-06-07 02:32:48 +02:00
version = "0.0.10"
2020-10-15 16:32:07 +02:00
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
2021-05-10 18:42:34 +02:00
license = "MPL-2.0"
2020-10-15 16:32:07 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
debug = ["helix-core/debug"]
2020-10-15 16:32:07 +02:00
[dependencies]
helix-core = { path = "../helix-core" }
2020-12-17 11:30:41 +01:00
2021-06-07 21:11:17 +02:00
anyhow = "1.0"
futures-executor = "0.3"
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
jsonrpc-core = { version = "17.1", default-features = false } # don't pull in all of futures
log = "0.4"
2021-04-21 06:36:32 +02:00
lsp-types = { version = "0.89", features = ["proposed"] }
serde = { version = "1.0", features = ["derive"] }
2021-06-07 21:11:17 +02:00
serde_json = "1.0"
2020-12-17 11:30:41 +01:00
thiserror = "1.0"
2021-06-07 21:11:17 +02:00
tokio = { version = "1.6", features = ["full"] }
tokio-stream = "0.1.6"