wasmrun 0.19.0

A WebAssembly Runtime
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(dead_code)]

pub mod control_flow;
pub mod executor;
pub mod linker;
pub mod memory;
pub mod module;
pub mod native_executor;
pub mod values;

#[cfg(test)]
mod tests;