-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (19 loc) · 850 Bytes
/
Copy pathCargo.toml
File metadata and controls
21 lines (19 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[workspace]
resolver = "2"
members = [
"crates/translator-shim",
"crates/testgen",
"crates/bindgen",
]
[workspace.package]
edition = "2021"
publish = false
[workspace.dependencies]
# wasmtime-environ and wit-parser ride together: the pinned wasmtime rev
# (main, 50.0.0-dev) links wasmparser 0.259, and wit-parser 0.259 is the
# same wasm-tools release train (docs/architecture.md §4.1, §9). Bump both
# here together. The spec submodule is pinned independently to merged #719,
# including idle-drop semantics beyond Wasmtime's own corpus pin.
# `just test-rust` asserts the crates still agree.
wasmtime-environ = { git = "https://github.com/bytecodealliance/wasmtime", rev = "cc546eee265b805dda0f034b2007d110a541093d", features = ["component-model", "compile", "anyhow"] }
wit-parser = { version = "=0.259.0", features = ["serde"] }