greenwasm 0.3.1

An implementation of the Webassembly spec in Rust.
1
2
3
4
5
6
//! Implementation based on the wasm-core-1 W3C standard

pub extern crate greenwasm_structure as structure;
pub extern crate greenwasm_validation as validation;
pub extern crate greenwasm_binary_format as binary_format;
pub extern crate greenwasm_execution as execution;