wasmbin 0.5.1

A self-generating WebAssembly parser and serializer
Documentation

wasmbin

wasmbin is a library implementing parsing and serialization WebAssembly binaries.

Announcement blog post: wasmbin: a self-generating WebAssembly parser & serializer.

Public API entry point: Module object. From there you can explore the module contents by simply looking up the nested fields.

Motivation

This crate intends to provide a low-level representation of the WebAssembly module that is fully described by Rust type system. It also leverages the said type system in conjunction with custom proc-macros to autogenerate parsing/serialization/visitation code for any complex types (structures and enums).

On the user's side this approach allows any type can be used independently to represent/parse/serialize only part of the module, while on the maintainers' side it makes adding and testing new WebAssembly features as quick and easy as adding new types, fields, and variants, without having to write any manual code at all.

One other notable feature is a Lazy<T> wrapper used in wasmbin whenever the spec permits efficiently skipping over some contents (e.g. function bodies).

It allows minimally invasive, efficient, "zero-cost" editing of WebAssembly modules: during decoding anything that can be skipped, is skipped over lazily, and during encoding only the modified parts of the module are re-encoded, while any untouched parts are copied verbatim as raw bytes from the source.