14 releases

0.9.0 Feb 10, 2021
0.8.0 Sep 22, 2020
0.8.0-rc5 Jul 24, 2020
0.8.0-alpha.5 Mar 24, 2020

#10 in #instantiate

Download history 67/week @ 2023-12-03 107/week @ 2023-12-10 136/week @ 2023-12-17 89/week @ 2023-12-24 23/week @ 2023-12-31 116/week @ 2024-01-07 148/week @ 2024-01-14 94/week @ 2024-01-21 42/week @ 2024-01-28 55/week @ 2024-02-04 125/week @ 2024-02-11 150/week @ 2024-02-18 169/week @ 2024-02-25 143/week @ 2024-03-03 165/week @ 2024-03-10 169/week @ 2024-03-17

648 downloads per month

Apache-2.0

31KB
698 lines

This crate provides means to instantiate and execute wasm modules.

It works even when the user of this library executes from inside the wasm VM. In this case the same VM is used for execution of both the sandbox owner and the sandboxed module, without compromising security and without the performance penalty of full wasm emulation inside wasm.

This is achieved by using bindings to the wasm VM, which are published by the host API. This API is thin and consists of only a handful functions. It contains functions for instantiating modules and executing them, but doesn't contain functions for inspecting the module structure. The user of this library is supposed to read the wasm module.

When this crate is used in the std environment all these functions are implemented by directly calling the wasm VM.

Examples of possible use-cases for this library are not limited to the following:

  • implementing smart-contract runtimes that use wasm for contract code
  • executing a wasm substrate runtime inside of a wasm parachain

License: Apache-2.0

Dependencies

~5–16MB
~185K SLoC