diff --git a/Cargo.lock b/Cargo.lock index 4bc4ed6..499fb4a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -139,7 +139,7 @@ version = "0.1.0" dependencies = [ "thiserror", "wasm-encoder", - "wasmparser 0.250.0", + "wasmparser 0.251.0", ] [[package]] @@ -163,6 +163,17 @@ name = "wasmparser" version = "0.250.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071d99cdfb8111603ed05500506c3298a940b58d609dd0259d3981785dd33556" +dependencies = [ + "bitflags", + "indexmap", + "semver", +] + +[[package]] +name = "wasmparser" +version = "0.251.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "437970b35b1a85cfde9c74b2398352d8d653f3bd8e3a3db0c063ea8f5b4b36ff" dependencies = [ "bitflags", "hashbrown", diff --git a/crates/typed-wasm-verify/Cargo.toml b/crates/typed-wasm-verify/Cargo.toml index cc1d998..18c1209 100644 --- a/crates/typed-wasm-verify/Cargo.toml +++ b/crates/typed-wasm-verify/Cargo.toml @@ -23,7 +23,7 @@ unstable-l2 = [] # (0.221 -> 0.250 reshaped the import iterator). Keep these locked so the # next dependabot bump shows up as a visible Cargo.toml diff and forces a # deliberate port rather than a silent lockfile move. -wasmparser = "=0.250.0" +wasmparser = "=0.251.0" thiserror = "2" [dev-dependencies]