Skip to content

Commit

Permalink
Bump wasmi from 0.36.0 to 0.38.0 (#1981)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
dependabot[bot] and tomaka authored Oct 18, 2024
1 parent 1709831 commit dd36bb6
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 20 deletions.
35 changes: 16 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "1.6.3", default-features = false }
wasmi = { version = "0.36.0", default-features = false }
wasmi = { version = "0.38.0", 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"] }

Expand Down
1 change: 1 addition & 0 deletions lib/src/executor/vm/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ impl InterpreterPrototype {
config.wasm_mutable_global(false);
config.wasm_saturating_float_to_int(false);
config.wasm_tail_call(false);
config.wasm_multi_memory(false);
config.compilation_mode(compilation_mode);

wasmi::Engine::new(&config)
Expand Down

0 comments on commit dd36bb6

Please sign in to comment.