-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (38 loc) · 790 Bytes
/
Copy pathCargo.toml
File metadata and controls
50 lines (38 loc) · 790 Bytes
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
[package]
name = "elm_lsp"
version = "0.1.0"
edition = "2021"
description = "A fast Elm Language Server written in Rust"
license = "MIT"
[lib]
name = "elm_lsp"
path = "src/lib.rs"
[[bin]]
name = "elm_lsp"
path = "src/main.rs"
[dependencies]
# LSP protocol
tower-lsp = "0.20"
# Async runtime
tokio = { version = "1", features = ["full"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Elm parsing
tree-sitter = "0.25"
tree-sitter-elm = "5.9"
# Concurrent data structures
dashmap = "5"
# Path handling
walkdir = "2"
dirs = "5"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
anyhow = "1"
[[bin]]
name = "benchmark"
path = "src/bin/benchmark.rs"
[dev-dependencies]
tempfile = "3"