From e8c1e885ae1e441b5301ee52b640918a9dbf55b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 18:34:45 +0000 Subject: [PATCH] chore(deps): update wasmparser requirement from 0.252 to 0.253 in /fuzz Updates the requirements on [wasmparser](https://github.com/bytecodealliance/wasm-tools) to permit the latest version. - [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 ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- fuzz/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a13ac9b..0d76470 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ rust-version = "1.85" [workspace.dependencies] # WebAssembly parsing and encoding -wasmparser = { version = "0.252", features = ["component-model"] } +wasmparser = { version = "0.253", features = ["component-model"] } wasm-encoder = { version = "0.253", features = ["component-model"] } wasmprinter = "0.252" wat = "1.241" diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 97423ac..6a1982d 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -16,7 +16,7 @@ libfuzzer-sys = "0.4" arbitrary = { version = "1", features = ["derive"] } # Disable verification feature to avoid Z3 compilation (not needed for fuzzing) loom-core = { path = "../loom-core", default-features = false } -wasmparser = { version = "0.252" } +wasmparser = { version = "0.253" } [[bin]] name = "fuzz_optimize"