2020-10-15 16:32:07 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-lsp"
|
2021-10-28 09:39:17 +02:00
|
|
|
version = "0.5.0"
|
2020-10-15 16:32:07 +02:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
2021-10-22 05:07:41 +02:00
|
|
|
edition = "2021"
|
2021-05-10 18:42:34 +02:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 16:41:03 +02:00
|
|
|
description = "LSP client implementation for Helix project"
|
|
|
|
categories = ["editor"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
2020-10-15 16:32:07 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-08-12 18:28:11 +02:00
|
|
|
helix-core = { version = "0.4", 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 }
|
2021-07-27 01:08:14 +02:00
|
|
|
jsonrpc-core = { version = "18.0", default-features = false } # don't pull in all of futures
|
2021-06-07 21:11:17 +02:00
|
|
|
log = "0.4"
|
2021-09-28 01:10:10 +02:00
|
|
|
lsp-types = { version = "0.90", features = ["proposed"] }
|
2020-10-18 11:01:06 +02:00
|
|
|
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-09-28 01:10:00 +02:00
|
|
|
tokio = { version = "1.12", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
|
2021-07-13 01:07:07 +02:00
|
|
|
tokio-stream = "0.1.7"
|