From e200232bb4ac4af4254caf9edf2e1d86a3d8423d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Sep 2026 04:29:42 +0000 Subject: [PATCH] build(deps): bump wasm-encoder from 0.240.0 to 0.258.0 Bumps [wasm-encoder](https://github.com/bytecodealliance/wasm-tools) from 0.240.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: wasm-encoder dependency-version: 0.258.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 ++++++++++++++--- rust/crates/pvm-runtime/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c1adb1d..9695c43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1583,12 +1583,12 @@ dependencies = [ [[package]] name = "wasm-encoder" -version = "0.240.0" +version = "0.258.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06d642d8c5ecc083aafe9ceb32809276a304547a3a6eeecceb5d8152598bc71f" +checksum = "e974fe6821a8cf64575d51ea2194e2c8f77e7b66e9afe7419ce8a97f9ee0d251" dependencies = [ "leb128fmt", - "wasmparser 0.240.0", + "wasmparser 0.258.0", ] [[package]] @@ -1658,6 +1658,17 @@ dependencies = [ "serde", ] +[[package]] +name = "wasmparser" +version = "0.258.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9a61719f93a87b16d325921e251800c4833f8fab50fa21c7de73aed50086313" +dependencies = [ + "bitflags 2.13.1", + "indexmap", + "semver", +] + [[package]] name = "web-sys" version = "0.3.104" diff --git a/rust/crates/pvm-runtime/Cargo.toml b/rust/crates/pvm-runtime/Cargo.toml index 52d45ec..ac98172 100644 --- a/rust/crates/pvm-runtime/Cargo.toml +++ b/rust/crates/pvm-runtime/Cargo.toml @@ -21,7 +21,7 @@ pvm-gpu-wire = { version = "0.1.6", path = "../pvm-gpu-wire" } pvm-motion-wire = { version = "0.1.6", path = "../pvm-motion-wire" } serde = { version = "1", features = ["derive"] } serde_json = "1" -wasm-encoder = "0.240" +wasm-encoder = "0.258" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] polkavm = { git = "https://github.com/paritytech/polkavm.git", rev = "e06cce9da5c6d3f72458168876ea304e27992094", version = "=0.37.0", features = ["generic-sandbox"] }