-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (50 loc) · 1.27 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (50 loc) · 1.27 KB
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
[package]
name = "path-server"
version = "1.4.0"
edition = "2024"
description = "A fast and lightweight language server for path completion."
repository = "https://github.com/kunlinglio/path-server"
homepage = "https://github.com/kunlinglio/path-server"
keywords = ["lsp", "language-server", "path", "path-completion"]
license = "Apache-2.0"
readme = "README.md"
exclude = ["extensions/**", "assets/**", ".github/**", ".vscode/**"]
[features]
multi-thread = ["tokio/rt-multi-thread"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
[dependencies]
config = "0.15.22"
futures = "0.3.32"
globset = "0.4.18"
hf = "0.6.0"
line-index = "0.1.2"
regex = "1.12.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
strum = "0.28.0"
strum_macros = "0.28.0"
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = [
"fs",
"macros",
"rt",
"sync",
"io-std",
] }
tower-lsp-server = "0.23.0"
tree-sitter = "0.26.7"
tree-sitter-c = "0.24.1"
tree-sitter-cpp = "0.23.4"
tree-sitter-dockerfile-updated = "0.2.0"
tree-sitter-html = "0.23.2"
tree-sitter-javascript = "0.25.0"
tree-sitter-md = "0.5.3"
tree-sitter-python = "0.25.0"
tree-sitter-rust = "0.24.1"
tree-sitter-typescript = "0.23.2"
[dev-dependencies]
tempfile = "3.27.0"