-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 855 Bytes
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 855 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
[workspace]
resolver = "2"
members = [
"crates/typed_ast",
"crates/compiler",
"crates/whirlwind_adapter",
"crates/zyntax_cli",
"crates/runtime",
"crates/zyntax_plugin_macros",
"crates/zyn_peg",
"crates/haxe_zyntax_runtime",
"crates/zyntax_embed",
"crates/zynml",
"sdk/zrtl",
"sdk/zrtl_macros",
"examples/imagepipe",
]
[workspace.dependencies]
rayon = "1.10.0"
dashmap = "6.1.0"
crossbeam = "0.8.4"
parking_lot = "0.12.3"
thiserror = "2.0.11"
serde_json = "1.0.138"
serde = {version= "1.0.217", features = ["derive"]}
tempfile = "3.16.0"
colored = "3.0.0"
lazy_static = "1.5.0"
regex = "1.11.1"
uuid = { version = "1.10.0", features = ["v4", "serde"] }
miette = "7.2.0"
typed-arena = "2.0.2"
string-interner = "0.17.0"
[workspace.lints.rust]
warnings = "allow"
[workspace.lints.clippy]
all = "allow"