2017-04-04 16:32:30 +03:00
2017-04-03 14:07:52 +03:00
2017-03-30 12:14:17 +03:00
2017-04-04 03:03:57 +03:00
2017-03-29 18:16:58 +03:00
2017-04-04 16:32:30 +03:00
2017-04-04 16:13:13 +03:00
2017-04-04 16:15:05 +03:00

parity-wasm

Build Status

Rust WebAssembly format serializing/deserializing


extern crate parity_wasm;

let module = parity-wasm::deserialize_file("./res/cases/v1/hello.wasm");
assert_eq!(module.code_section().is_some());

let code_section = module.code_section().unwrap(); // Part of the module with functions code

println!("Function count in wasm file: {}", code_section.bodies().len());
Description
No description provided
Readme 14 MiB
Languages
Rust 100%