finite-wasm 0.6.0

Guarantee deterministic limits on execution time and space resources made available to the WebAssembly programs in a runtime-agnostic way.
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "wast-tests")]
fn build_interpreter() {
    println!("cargo:rerun-if-changed=interpreter");
    std::process::Command::new("make")
        .args(["-Cinterpreter", "wasm"])
        .output()
        .expect("failed compiling wasm interpreter");
}

fn main() {
    #[cfg(feature = "wast-tests")]
    build_interpreter();
}