forked from estin/simple-completion-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (24 loc) · 735 Bytes
/
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
[package]
name = "simple-completion-language-server"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "simple-completion-language-server"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
ropey = "1.6"
aho-corasick = "1.1"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-std", "macros"] }
tower-lsp = { version = "0.20", features = ["runtime-tokio"] }
serde = { version = "1", features = ["serde_derive"] }
serde_json = { version = "1" }
# snippets
toml = "0.8"
etcetera = "0.8"
xshell = "0.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tracing-appender = "0.2"
[dev-dependencies]
test-log = { version = "0.2", default-features = false, features = ["trace"] }