248 releases (148 breaking)

0.227.1 Mar 7, 2025
0.226.0 Feb 19, 2025
0.222.0 Dec 18, 2024
0.221.0 Nov 27, 2024
0.7.2 Jul 7, 2017

#1103 in WebAssembly

Download history 365638/week @ 2024-11-26 429182/week @ 2024-12-03 418329/week @ 2024-12-10 374223/week @ 2024-12-17 192453/week @ 2024-12-24 266221/week @ 2024-12-31 431255/week @ 2025-01-07 408083/week @ 2025-01-14 413995/week @ 2025-01-21 428044/week @ 2025-01-28 496762/week @ 2025-02-04 438569/week @ 2025-02-11 467471/week @ 2025-02-18 460629/week @ 2025-02-25 510004/week @ 2025-03-04 423354/week @ 2025-03-11

1,926,815 downloads per month
Used in 1,474 crates (203 directly)

Apache-2.0…

1.5MB
27K SLoC

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/

Dependencies

~175–670KB
~13K SLoC