From 0a9910f1b05981336dd1d99dc55e99a4aab28581 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Sep 2026 18:24:21 +0000 Subject: [PATCH] chore(deps): bump wasmparser from 0.256.0 to 0.258.0 in /fuzz Bumps [wasmparser](https://github.com/bytecodealliance/wasm-tools) from 0.256.0 to 0.258.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.258.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- fuzz/Cargo.lock | 9 +++++---- fuzz/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a18a442..13a97fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ rust-version = "1.85" [workspace.dependencies] # WebAssembly parsing and encoding -wasmparser = { version = "0.256", features = ["component-model"] } +wasmparser = { version = "0.258", features = ["component-model"] } wasm-encoder = { version = "0.256", features = ["component-model"] } wasmprinter = "0.257" wat = "1.241" diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index 8372414..f000871 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -215,7 +215,7 @@ dependencies = [ "rayon", "thiserror", "wasm-encoder 0.256.0", - "wasmparser 0.256.0", + "wasmparser 0.258.0", "wasmprinter", "wat", "wit-component", @@ -228,7 +228,7 @@ dependencies = [ "arbitrary", "libfuzzer-sys", "loom-core", - "wasmparser 0.256.0", + "wasmparser 0.258.0", ] [[package]] @@ -247,7 +247,7 @@ dependencies = [ "cranelift-isle", "thiserror", "wasm-encoder 0.256.0", - "wasmparser 0.256.0", + "wasmparser 0.258.0", "wasmprinter", "wat", "wit-component", @@ -471,7 +471,6 @@ dependencies = [ "hashbrown", "indexmap", "semver", - "serde", ] [[package]] @@ -492,8 +491,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9a61719f93a87b16d325921e251800c4833f8fab50fa21c7de73aed50086313" dependencies = [ "bitflags", + "hashbrown", "indexmap", "semver", + "serde", ] [[package]] diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 5aae910..0d46436 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.256" } +wasmparser = { version = "0.258" } [[bin]] name = "fuzz_optimize"