From 1eb063fd4cb3aadea520c22bed41e138fae333a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Jan 2026 21:14:32 +0000 Subject: [PATCH] Bump wasmi from 0.40.0 to 1.0.7 Bumps [wasmi](https://github.com/wasmi-labs/wasmi) from 0.40.0 to 1.0.7. - [Release notes](https://github.com/wasmi-labs/wasmi/releases) - [Changelog](https://github.com/wasmi-labs/wasmi/blob/main/CHANGELOG.md) - [Commits](https://github.com/wasmi-labs/wasmi/compare/v0.40.0...v1.0.7) --- updated-dependencies: - dependency-name: wasmi dependency-version: 1.0.7 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 38 +++++++++++--------------------------- lib/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 28 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ddea0380a8..9f4086227c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -957,12 +957,6 @@ dependencies = [ "windows-sys 0.61.2", ] -[[package]] -name = "downcast-rs" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" - [[package]] name = "ed25519" version = "2.2.3" @@ -1716,12 +1710,6 @@ dependencies = [ "simd-adler32", ] -[[package]] -name = "multi-stash" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "685a9ac4b61f4e728e1d2c6a7844609c16527aeb5e6c865915c08e619c16410f" - [[package]] name = "nix" version = "0.30.1" @@ -2970,50 +2958,46 @@ dependencies = [ [[package]] name = "wasmi" -version = "0.40.0" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a19af97fcb96045dd1d6b4d23e2b4abdbbe81723dbc5c9f016eb52145b320063" +checksum = "75c97bf74a48796b57fdfe35c00a9fe05410f0f1f8ccfe38591e382a0060a6fd" dependencies = [ - "arrayvec 0.7.6", - "multi-stash", - "smallvec", "spin", "wasmi_collections", "wasmi_core", "wasmi_ir", - "wasmparser 0.221.3", + "wasmparser 0.228.0", ] [[package]] name = "wasmi_collections" -version = "0.40.0" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e80d6b275b1c922021939d561574bf376613493ae2b61c6963b15db0e8813562" +checksum = "fc03d171a00367f89bfb376fe952bb67e337a4992911948c22e1093730a4e718" [[package]] name = "wasmi_core" -version = "0.40.0" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a8c51482cc32d31c2c7ff211cd2bedd73c5bd057ba16a2ed0110e7a96097c33" +checksum = "9f2f829ada3e3fc5d723cd80feb7bbb1ba358ce3a9b069477b3c58c85f892c71" dependencies = [ - "downcast-rs", "libm", ] [[package]] name = "wasmi_ir" -version = "0.40.0" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e431a14c186db59212a88516788bd68ed51f87aa1e08d1df742522867b5289a" +checksum = "a28c3e221277780790bd0abd5c5da440dd39989cd8fa98330a4820d398a7af66" dependencies = [ "wasmi_core", ] [[package]] name = "wasmparser" -version = "0.221.3" +version = "0.228.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d06bfa36ab3ac2be0dee563380147a5b81ba10dd8885d7fbbc9eb574be67d185" +checksum = "4abf1132c1fdf747d56bbc1bb52152400c70f336870f968b85e89ea422198ae3" dependencies = [ "bitflags", ] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 50da53289f..b143329a00 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -76,7 +76,7 @@ siphasher = { version = "1.0.1", default-features = false } slab = { version = "0.4.8", default-features = false } smallvec = { version = "1.13.2", default-features = false } twox-hash = { version = "2.0.0", default-features = false, features = ["xxhash64"] } -wasmi = { version = "0.40.0", default-features = false } +wasmi = { version = "1.0.7", default-features = false } x25519-dalek = { version = "2.0.0-rc.3", default-features = false, features = ["alloc", "precomputed-tables", "static_secrets", "zeroize"] } zeroize = { version = "1.7.0", default-features = false, features = ["alloc"] }