-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (54 loc) · 1.31 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "tooling-language-server"
version = "0.3.0"
edition = "2021"
description = "A language server for tooling"
keywords = ["lsp", "language-server", "tower"]
categories = ["asynchronous"]
repository = "https://github.com/filiptibell/tooling-language-server"
license = "MPL-2.0"
publish = false
[[bin]]
name = "tooling-language-server"
path = "src/main.rs"
[profile.release]
opt-level = "z"
strip = true
lto = true
[dependencies]
anyhow = "1.0"
bytes = "1.0"
dashmap = "5.5"
logos = "0.14"
once_cell = "1.18"
semver = "1.0"
thiserror = "1.0"
url = "2.4"
which = "6.0"
async-channel = "2.2"
async-semaphore = "1.2"
futures = "0.3"
serde = "1.0"
serde_json = "1.0"
toml = "0.8"
taplo = "0.13"
json-syntax = "0.10"
locspan = "0.8"
moka = { version = "0.12", features = ["future"] }
tokio = { version = "1.25", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dependencies.tower-lsp]
version = "0.20"
default-features = false
features = ["runtime-tokio", "proposed"]
[dependencies.lsp-document]
git = "https://github.com/artempyanykh/rust-lsp-document"
rev = "d08ce4d2e36b073611d0db17e5a2b41a70d8daa4"
[dependencies.reqwest]
version = "0.12"
default-features = false
features = ["rustls-tls", "gzip"]
[dependencies.clap]
version = "4.4"
features = ["derive", "env"]