From 0bb0cf6f6cb59bfe8359e5e4b8f8e3a2ed97d813 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Jul 2026 02:32:33 +0000 Subject: [PATCH] chore(deps): bump wasmparser from 0.252.0 to 0.253.0 Bumps [wasmparser](https://github.com/bytecodealliance/wasm-tools) from 0.252.0 to 0.253.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.253.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++++++++++++-- crates/typed-wasm-codegen/Cargo.toml | 2 +- crates/typed-wasm-verify/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 60aa66e..08757bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -204,7 +204,7 @@ dependencies = [ "typed-wasm-verify", "wasm-encoder", "wasmi", - "wasmparser 0.252.0", + "wasmparser 0.253.0", "wasmprinter", ] @@ -224,7 +224,7 @@ version = "0.1.0" dependencies = [ "thiserror", "wasm-encoder", - "wasmparser 0.252.0", + "wasmparser 0.253.0", ] [[package]] @@ -305,6 +305,17 @@ name = "wasmparser" version = "0.252.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3eb099dcadcde5be9eef55e3a337128efd4e44b4c93122487e4d2e4e1c6627c" +dependencies = [ + "bitflags", + "indexmap", + "semver", +] + +[[package]] +name = "wasmparser" +version = "0.253.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19db11f87d2486580e1e8b6f494c54df7e0566b87d0b599db843c24019667339" dependencies = [ "bitflags", "hashbrown 0.17.1", diff --git a/crates/typed-wasm-codegen/Cargo.toml b/crates/typed-wasm-codegen/Cargo.toml index 5428105..ff439b6 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.252.0" +wasmparser = "=0.253.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 a972863..606ec2b 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.252.0" +wasmparser = "=0.253.0" thiserror = "2" [dev-dependencies]