-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (45 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
47 lines (45 loc) · 1.19 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
[workspace]
members = [
"crates/t-linter",
"crates/t-linter-core",
"crates/t-linter-lsp",
"crates/t-linter-cli",
]
resolver = "2"
[workspace.package]
version = "0.7.0"
authors = ["Koudai Aono <koxudaxi@gmail.com>"]
edition = "2024"
license = "MIT"
repository = "https://github.com/koxudaxi/t-linter"
[workspace.dependencies]
anyhow = "1.0.102"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
toml = "0.8.23"
ignore = "0.4.24"
tree-sitter = "0.26.6"
tree-sitter-python = "0.25.0"
tree-sitter-highlight = "0.26.6"
tree-sitter-html = "0.23.2"
tree-sitter-css = "0.25.0"
tree-sitter-javascript = "0.25.0"
tree-sitter-json = "0.24.8"
tree-sitter-yaml = "0.7.2"
tree-sitter-toml-ng = "0.7.0"
tree-sitter-sequel = "0.3.11"
tokio = { version = "1.50.0", features = ["full"] }
tower-lsp = "0.20"
clap = { version = "4.6.0", features = ["derive"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "fmt"] }
tempfile = "3.23.0"
wait-timeout = "0.2.1"
unicode_names2 = "2.0.0"
tstring-json = "0.2.1"
tstring-toml = "0.2.1"
tstring-yaml = "0.2.1"
tstring-syntax = "0.2.1"
tstring-html = "0.1.9"
tstring-thtml = "0.1.9"
tstring-tdom = "0.1.9"