2020-10-15 22:32:07 +08:00
|
|
|
[package]
|
|
|
|
name = "helix-lsp"
|
2022-01-04 17:54:05 +08:00
|
|
|
version = "0.6.0"
|
2020-10-15 22:32:07 +08:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
2021-10-22 11:07:41 +08:00
|
|
|
edition = "2021"
|
2021-05-11 00:42:34 +08:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 22:41:03 +08: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 22:32:07 +08:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-04 17:54:05 +08:00
|
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|
2022-12-09 11:57:03 +08:00
|
|
|
helix-loader = { version = "0.6", path = "../helix-loader" }
|
2022-10-04 09:41:31 +08:00
|
|
|
helix-parsec = { version = "0.6", path = "../helix-parsec" }
|
2020-12-17 18:30:41 +08:00
|
|
|
|
2021-06-08 03:11:17 +08:00
|
|
|
anyhow = "1.0"
|
|
|
|
futures-executor = "0.3"
|
|
|
|
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
2023-08-08 21:21:16 +08:00
|
|
|
globset = "0.4.13"
|
2021-06-08 03:11:17 +08:00
|
|
|
log = "0.4"
|
2023-02-11 14:50:01 +08:00
|
|
|
lsp-types = { version = "0.94" }
|
2020-10-18 17:01:06 +08:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-06-08 03:11:17 +08:00
|
|
|
serde_json = "1.0"
|
2020-12-17 18:30:41 +08:00
|
|
|
thiserror = "1.0"
|
2023-11-14 10:55:57 +08:00
|
|
|
tokio = { version = "1.34", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "sync"] }
|
2023-05-02 08:59:05 +08:00
|
|
|
tokio-stream = "0.1.14"
|
2023-11-26 00:37:00 +08:00
|
|
|
which = "5.0.0"
|
2023-02-07 22:59:04 +08:00
|
|
|
parking_lot = "0.12.1"
|