| Crates.io | sophon-wasm |
| lib.rs | sophon-wasm |
| version | 0.18.1 |
| created_at | 2018-01-09 20:51:36.79152+00 |
| updated_at | 2018-01-10 11:21:43.815086+00 |
| description | WebAssembly binary format serialization/deserialization/interpreter |
| homepage | https://github.com/super-string/sophon-wasm |
| repository | https://github.com/super-string/sophon-wasm |
| max_upload_size | |
| id | 46164 |
| size | 575,755 |
along with experimental interpreter
extern crate sophon_wasm;
let module = sophon_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());
Interpreter and decoder supports full wabt testsuite (https://github.com/WebAssembly/testsuite), To run testsuite:
wabt (since sophon-wasm builds it internally using cmake, see https://github.com/WebAssembly/wabt)git submodule update --init --recursive)cargo test --release --manifest-path=spec/Cargo.tomlDecoder can be fuzzed with cargo-fuzz using wasm-opt (https://github.com/WebAssembly/binaryen):
binaryen and cargo-fuzz (cmake and a C++11 toolchain)git submodule update --init --recursive)cargo fuzz subcommand with cargo install cargo-fuzzcargo fuzz uses a rust compiler plugin: rustup override set nightlycargo fuzz run deserializesophon-wasm is primarily distributed under the terms of both the MIT
license and the Apache License (Version 2.0), at your choice.
See LICENSE-APACHE, and LICENSE-MIT for details.