inkpad-executor 0.1.0

wasm executor of inkpad
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! wasmi executor
mod builder;
mod external;
mod func;
mod instance;
mod memory;
// mod result;
mod trap;
mod value;

pub use self::{builder::Builder, instance::Instance, memory::Memory};