No description
Find a file
Daniel Baumann cc30553220
Releasing fastforward version 0.239.0-1~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-05-22 19:19:49 +02:00
benches Adding upstream version 0.239.0. 2026-05-22 19:19:41 +02:00
debian Releasing fastforward version 0.239.0-1~ffwd13+u1. 2026-05-22 19:19:49 +02:00
examples Adding upstream version 0.239.0. 2026-05-22 19:19:41 +02:00
src Adding upstream version 0.239.0. 2026-05-22 19:19:41 +02:00
tests Adding upstream version 0.239.0. 2026-05-22 19:19:41 +02:00
.cargo_vcs_info.json Adding upstream version 0.239.0. 2026-05-22 19:19:41 +02:00
build.rs Adding upstream version 0.239.0. 2026-05-22 19:19:41 +02:00
Cargo.lock Adding upstream version 0.239.0. 2026-05-22 19:19:41 +02:00
Cargo.toml Adding upstream version 0.239.0. 2026-05-22 19:19:41 +02:00
Cargo.toml.orig Adding upstream version 0.239.0. 2026-05-22 19:19:41 +02:00
README.md Adding upstream version 0.239.0. 2026-05-22 19:19:41 +02:00

wasmparser: A WebAssembly Binary Parser

A Bytecode Alliance project

crates.io link docs.rs docs

A simple, event-driven library for parsing WebAssembly binary files (or streams).

The library reports events as they happen and only stores parsing information for a brief period of time, making it fast and memory-efficient. The event-driven model, however, has some drawbacks. If you need random access to the entire WebAssembly data-structure, this is not the right library for you. You could however, build such a data-structure using this library.

To get started, create a Parser using Parser::new and then follow the examples documented for Parser::parse or Parser::parse_all.

Documentation

Documentation and examples can be found at https://docs.rs/wasmparser/