-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
31 lines (28 loc) · 853 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
30
31
[package]
name = "protols"
description = "Language server for proto3 files"
version = "0.8.0"
edition = "2021"
license = "MIT"
homepage = "https://github.com/coder3101/protols"
repository = "https://github.com/coder3101/protols"
readme = "README.md"
keywords = ["lsp", "proto"]
exclude = ["assets/*", "sample/*"]
[dependencies]
async-lsp = { version = "0.2.0", features = ["tokio"] }
futures = "0.3.30"
tokio = { version = "1.38.0", features = ["time", "full"] }
tokio-util = { version = "0.7.11", features = ["compat"] }
tower = "0.4.13"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tree-sitter = "0.24.3"
tracing-appender = "0.2.3"
tree-sitter-proto = "0.2.0"
walkdir = "2.5.0"
hard-xml = "1.36.0"
tempfile = "3.12.0"
serde = { version = "1.0.209", features = ["derive"] }
[dev-dependencies]
insta = { version = "1.39.0", features = ["yaml"] }