-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
49 lines (45 loc) · 1.14 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
[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/zyntax_wasm",
"crates/zynml",
"crates/pattern_engine",
"crates/passes/normalization",
"crates/passes/algebraic_effects",
"crates/passes/krio_adapter",
"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"
# `js` enables web-sys-backed randomness on wasm32-unknown-unknown.
# It's a no-op on native targets; safe to set unconditionally.
uuid = { version = "1.10.0", features = ["v4", "serde", "js"] }
miette = "7.2.0"
typed-arena = "2.0.2"
string-interner = "0.17.0"
ariadne = "0.5"
[workspace.lints.rust]
warnings = "allow"
[workspace.lints.clippy]
all = "allow"