-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (19 loc) · 652 Bytes
/
Cargo.toml
File metadata and controls
21 lines (19 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[workspace]
members = ["bindings", "crates/*"]
resolver = "3"
[workspace.dependencies]
criterion = "0.8"
insta = { version = "1.47", features = ["glob", "json"] }
line-index = "0.1"
lspt = "0.3"
rustc-hash = "2.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
similar-asserts = "2.0"
wat_formatter = { path = "crates/formatter", version = "0.10" }
wat_parser = { path = "crates/parser", version = "0.10" }
wat_server = { path = "crates/server", version = "0.10" }
wat_service = { path = "crates/service", version = "0.10" }
wat_syntax = { path = "crates/syntax", version = "0.10" }
[workspace.lints.clippy]
dbg_macro = "warn"