-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (43 loc) · 1.13 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (43 loc) · 1.13 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
[workspace]
resolver = "2"
members = ["crates/schema", "crates/syntax", "crates/analysis", "crates/w3d", "crates/server"]
[workspace.package]
version = "1.2.3"
edition = "2021"
license = "MIT"
repository = "https://github.com/ViTeXFTW/ZeroSyntaxV2"
rust-version = "1.75"
[workspace.dependencies]
zerosyntax-schema = { path = "crates/schema" }
zerosyntax-syntax = { path = "crates/syntax" }
zerosyntax-analysis = { path = "crates/analysis" }
zerosyntax-w3d = { path = "crates/w3d" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1.1"
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# syntax
logos = "0.16"
rowan = "0.16"
# server
tower-lsp = "0.20"
tokio = { version = "1", features = ["full"] }
ropey = "1"
dashmap = "6"
percent-encoding = "2"
base64 = "0.22"
glam = "0.27"
image = { version = "0.24.9", default-features = false, features = ["dds", "png", "tga"] }
# server (workspace indexing)
walkdir = "2"
clap = { version = "4", default-features = false, features = [
"std",
"help",
"usage",
"error-context",
] }
# benches
criterion = "0.8"