forked from ebkalderon/tower-lsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.27 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "tower-lsp"
version = "0.13.3"
authors = ["Eyal Kalderon <[email protected]>"]
edition = "2018"
description = "Language Server Protocol implementation based on Tower"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/ebkalderon/tower-lsp"
repository = "https://github.com/ebkalderon/tower-lsp"
documentation = "https://docs.rs/tower-lsp/"
readme = "README.md"
categories = ["asynchronous"]
keywords = ["language-server", "lsp", "tower"]
exclude = ["./tower-lsp-macros"]
[dependencies]
async-trait = "0.1"
auto_impl = "0.4"
bytes = "1.0.1"
dashmap = "4.0.2"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
log = "0.4"
lsp-types = "0.89.0"
nom = { version = "6.1.2", default-features = false, features = ["std"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.6.0", features = ["rt-multi-thread", "time"] }
tokio-util = { version = "0.6.5", features = ["codec"] }
tower-lsp-macros = { version = "0.3", path = "./tower-lsp-macros" }
tower-service = "0.3"
[dev-dependencies]
env_logger = "0.8.3"
tokio = { version = "1.4.0", features = ["io-std", "io-util", "macros", "net", "test-util"] }
tower-test = "0.4"
[workspace]
members = [".", "./tower-lsp-macros"]
default-members = ["."]