1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! A small embeddable and extendable WebAssembly interpreter. //! Uses the `parity-wasm` crate for loading wasm binaries. extern crate byteorder; #[macro_use] extern crate failure; #[macro_use] extern crate lazy_static; extern crate num; extern crate parity_wasm; #[cfg(test)] mod tests; pub mod types; pub mod util; pub mod loader; pub mod interpreter;