50 releases
0.2.49 | Jan 25, 2023 |
---|---|
0.2.45 | Dec 12, 2022 |
0.2.44 | Nov 21, 2022 |
0.2.38 | Jul 27, 2022 |
0.2.0 | Nov 18, 2019 |
#38 in WebAssembly
26,533 downloads per month
Used in 24 crates
(18 directly)
785KB
17K
SLoC
wasmprinter
A Bytecode Alliance project
A Rust parser for printing a WebAssembly binary in the WebAssembly Text Format (WAT).
Usage
Add wasmprinter
to your Cargo.toml
$ cargo add wasmprinter
You can then convert wasm binaries to strings like so:
fn main() -> Result<()> {
let foo_wat = wasmprinter::print_file("path/to/foo.wasm")?;
let binary = /* ... */;
let wat = wasmprinter::print_bytes(&binary)?;
// ...
}
License
This project is licensed under the Apache 2.0 license with the LLVM exception. See LICENSE for more details.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.
Dependencies
~2.5MB
~72K SLoC