helix-mirror/helix-lsp/Cargo.toml

28 lines
1023 B
TOML
Raw Normal View History

2020-10-15 18:32:07 +04:00
[package]
name = "helix-lsp"
2021-08-14 08:31:23 +04:00
version = "0.4.1"
2020-10-15 18:32:07 +04:00
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
2021-10-22 07:07:41 +04:00
edition = "2021"
2021-05-10 20:42:34 +04:00
license = "MPL-2.0"
2021-06-18 18:41:03 +04: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 18:32:07 +04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-08-12 20:28:11 +04:00
helix-core = { version = "0.4", path = "../helix-core" }
2020-12-17 14:30:41 +04:00
2021-06-07 23:11:17 +04:00
anyhow = "1.0"
futures-executor = "0.3"
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
jsonrpc-core = { version = "18.0", default-features = false } # don't pull in all of futures
2021-06-07 23:11:17 +04:00
log = "0.4"
lsp-types = { version = "0.90", features = ["proposed"] }
serde = { version = "1.0", features = ["derive"] }
2021-06-07 23:11:17 +04:00
serde_json = "1.0"
2020-12-17 14:30:41 +04:00
thiserror = "1.0"
tokio = { version = "1.12", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
tokio-stream = "0.1.7"