greenwasm-execution 0.3.0

An implementation of the execution section from the Webassembly spec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(macro_at_most_once_rep)]
#![feature(core_intrinsics)]
#![feature(int_to_from_bytes)]
#![feature(nll)]

extern crate greenwasm_structure;
extern crate greenwasm_validation;
extern crate frounding;

const DEBUG_EXECUTION: bool = false;

pub mod runtime_structure;
pub mod modules;
pub mod numerics;
pub mod instructions;