2020-10-15 23:32:07 +09:00
|
|
|
[package]
|
|
|
|
name = "helix-lsp"
|
2023-12-04 20:54:18 -05:00
|
|
|
description = "LSP client implementation for Helix project"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2023-11-27 21:24:57 +09:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-12-04 20:54:18 -05:00
|
|
|
categories.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
2020-10-15 23:32:07 +09:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-16 13:59:48 -05:00
|
|
|
helix-stdx = { path = "../helix-stdx" }
|
2023-12-04 20:54:18 -05:00
|
|
|
helix-core = { path = "../helix-core" }
|
|
|
|
helix-loader = { path = "../helix-loader" }
|
|
|
|
helix-parsec = { path = "../helix-parsec" }
|
2020-12-17 19:30:41 +09:00
|
|
|
|
2021-06-07 22:11:17 +03:00
|
|
|
anyhow = "1.0"
|
|
|
|
futures-executor = "0.3"
|
|
|
|
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
2023-11-28 09:51:45 +09:00
|
|
|
globset = "0.4.14"
|
2021-06-07 22:11:17 +03:00
|
|
|
log = "0.4"
|
2023-12-20 00:30:46 +09:00
|
|
|
lsp-types = { version = "0.95" }
|
2020-10-18 18:01:06 +09:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-06-07 22:11:17 +03:00
|
|
|
serde_json = "1.0"
|
2020-12-17 19:30:41 +09:00
|
|
|
thiserror = "1.0"
|
2024-04-02 11:26:28 +09:00
|
|
|
tokio = { version = "1.37", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "sync"] }
|
2024-03-19 14:14:09 +09:00
|
|
|
tokio-stream = "0.1.15"
|
2024-05-07 21:43:40 +02:00
|
|
|
parking_lot = "0.12.2"
|
2024-02-13 18:58:53 +08:00
|
|
|
arc-swap = "1"
|
2024-04-08 02:46:32 +02:00
|
|
|
slotmap.workspace = true
|