Crate to represent wasm in Rust?
Is there any package to represent the parts of WebAssembly in Rust?
Ideally I'd build up an abstract syntax structure in memory, then parse is to either text (wat) of binary (wasm). The representation can either map 1-to-1 to wasm, or something fairl...