Skip to content

Commit dd36bb6

Browse files
Bump wasmi from 0.36.0 to 0.38.0 (#1981)
* Bump wasmi from 0.36.0 to 0.38.0 Bumps [wasmi](https://github.com/wasmi-labs/wasmi) from 0.36.0 to 0.38.0. - [Release notes](https://github.com/wasmi-labs/wasmi/releases) - [Changelog](https://github.com/wasmi-labs/wasmi/blob/main/CHANGELOG.md) - [Commits](wasmi-labs/wasmi@v0.36.0...v0.38.0) --- updated-dependencies: - dependency-name: wasmi dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Disable multi-memory --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pierre Krieger <pierre.krieger1708@gmail.com>
1 parent 1709831 commit dd36bb6

File tree

3 files changed

+18
-20
lines changed

3 files changed

+18
-20
lines changed

Cargo.lock

Lines changed: 16 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ siphasher = { version = "1.0.1", default-features = false }
7676
slab = { version = "0.4.8", default-features = false }
7777
smallvec = { version = "1.13.2", default-features = false }
7878
twox-hash = { version = "1.6.3", default-features = false }
79-
wasmi = { version = "0.36.0", default-features = false }
79+
wasmi = { version = "0.38.0", default-features = false }
8080
x25519-dalek = { version = "2.0.0-rc.3", default-features = false, features = ["alloc", "precomputed-tables", "static_secrets", "zeroize"] }
8181
zeroize = { version = "1.7.0", default-features = false, features = ["alloc"] }
8282

lib/src/executor/vm/interpreter.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ impl InterpreterPrototype {
6868
config.wasm_mutable_global(false);
6969
config.wasm_saturating_float_to_int(false);
7070
config.wasm_tail_call(false);
71+
config.wasm_multi_memory(false);
7172
config.compilation_mode(compilation_mode);
7273

7374
wasmi::Engine::new(&config)

0 commit comments

Comments
 (0)