Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions crates/translator-shim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ crate-type = ["lib", "cdylib"]
# Pinned exactly (docs/architecture.md §4.1): the same major (47) as the installed wasmtime
# CLI (47.0.1), so native behavior can be compared against `wasmtime compile`.
wasmtime-environ = { version = "=47.0.3", features = ["component-model", "compile", "anyhow"] }
# Validator comes from wasmparser; MUST match the version wasmtime-environ
# links against (it takes `&mut wasmparser::Validator` directly).
wasmparser = "0.252.0"
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
2 changes: 1 addition & 1 deletion crates/translator-shim/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use anyhow::{bail, Result};
use base64::Engine as _;
use serde::Serialize;
use wasmtime_environ::component::{ComponentTypesBuilder, Translator};
use wasmtime_environ::{ScopeVec, Tunables};
use wasmtime_environ::{ScopeVec, Tunables, wasmparser};

pub mod error;
pub mod plan;
Expand Down
Loading