From f12a8fd7bdd87733ce1a6559d302698668c627c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 15 Aug 2026 02:33:14 +0000 Subject: [PATCH] chore(deps): bump wasmparser from 0.255.0 to 0.256.0 Bumps [wasmparser](https://github.com/bytecodealliance/wasm-tools) from 0.255.0 to 0.256.0. - [Release notes](https://github.com/bytecodealliance/wasm-tools/releases) - [Commits](https://github.com/bytecodealliance/wasm-tools/commits) --- updated-dependencies: - dependency-name: wasmparser dependency-version: 0.256.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++++++--- crates/typed-wasm-codegen/Cargo.toml | 2 +- crates/typed-wasm-verify/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1221d46..05fb49b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -204,7 +204,7 @@ dependencies = [ "typed-wasm-verify", "wasm-encoder 0.255.0", "wasmi", - "wasmparser 0.255.0", + "wasmparser 0.256.0", "wasmprinter", ] @@ -224,7 +224,7 @@ version = "0.1.0" dependencies = [ "thiserror", "wasm-encoder 0.255.0", - "wasmparser 0.255.0", + "wasmparser 0.256.0", ] [[package]] @@ -318,7 +318,6 @@ checksum = "d5769a29f799fbab136aaf65b4fe5384cd7d93fe6fc9ba0dcb6c8382a1f16e27" dependencies = [ "bitflags", "indexmap", - "semver", ] [[package]] @@ -326,6 +325,17 @@ name = "wasmparser" version = "0.255.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8e329ef4b5d46e73b91d3ac6924417cad55a8cbbf869c199283383427c3320b" +dependencies = [ + "bitflags", + "indexmap", + "semver", +] + +[[package]] +name = "wasmparser" +version = "0.256.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60bd825ffedc6cba8a642924ba7ae424afbc47811cffbcb7b92031ec24e59b4c" dependencies = [ "bitflags", "hashbrown 0.17.1", diff --git a/crates/typed-wasm-codegen/Cargo.toml b/crates/typed-wasm-codegen/Cargo.toml index d8c095a..2ad8558 100644 --- a/crates/typed-wasm-codegen/Cargo.toml +++ b/crates/typed-wasm-codegen/Cargo.toml @@ -30,7 +30,7 @@ typed-wasm-verify = { path = "../typed-wasm-verify", features = ["unstable-l2", [dev-dependencies] # Round-trip test validates the emitted module is well-formed wasm before # handing it to the verifier. -wasmparser = "=0.255.0" +wasmparser = "=0.256.0" # In-process wasm engine for the Tier-1 differential execution gate # (tests/execute_lowering.rs): proves lowered store/load bodies COMPUTE the # right memory semantics at runtime, not just that they validate. Pure-Rust so diff --git a/crates/typed-wasm-verify/Cargo.toml b/crates/typed-wasm-verify/Cargo.toml index 848d49a..8962433 100644 --- a/crates/typed-wasm-verify/Cargo.toml +++ b/crates/typed-wasm-verify/Cargo.toml @@ -46,7 +46,7 @@ unstable-l13-imports = ["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.255.0" +wasmparser = "=0.256.0" thiserror = "2" [dev-dependencies]