2020-10-15 16:32:07 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-lsp"
|
2023-12-05 02:54:18 +01:00
|
|
|
description = "LSP client implementation for Helix project"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2023-11-27 13:24:57 +01:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-12-05 02:54:18 +01:00
|
|
|
categories.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
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]
|
2023-12-05 02:54:18 +01:00
|
|
|
helix-core = { path = "../helix-core" }
|
|
|
|
helix-loader = { path = "../helix-loader" }
|
|
|
|
helix-parsec = { path = "../helix-parsec" }
|
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 }
|
2023-11-28 01:51:45 +01:00
|
|
|
globset = "0.4.14"
|
2021-06-07 21:11:17 +02:00
|
|
|
log = "0.4"
|
2023-12-19 16:30:46 +01:00
|
|
|
lsp-types = { version = "0.95" }
|
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"
|
2023-12-12 03:05:10 +01:00
|
|
|
tokio = { version = "1.35", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "sync"] }
|
2023-05-02 02:59:05 +02:00
|
|
|
tokio-stream = "0.1.14"
|
2023-11-25 17:37:00 +01:00
|
|
|
which = "5.0.0"
|
2023-02-07 15:59:04 +01:00
|
|
|
parking_lot = "0.12.1"
|