250 releases (150 breaking)

new 0.229.0 Apr 17, 2025
0.227.1 Mar 7, 2025
0.222.0 Dec 18, 2024
0.221.0 Nov 27, 2024
0.7.2 Jul 7, 2017

#145 in WebAssembly

Download history 200987/week @ 2024-12-26 343435/week @ 2025-01-02 443057/week @ 2025-01-09 398248/week @ 2025-01-16 437410/week @ 2025-01-23 434734/week @ 2025-01-30 494841/week @ 2025-02-06 423171/week @ 2025-02-13 477010/week @ 2025-02-20 470072/week @ 2025-02-27 504406/week @ 2025-03-06 535682/week @ 2025-03-13 585049/week @ 2025-03-20 489660/week @ 2025-03-27 587470/week @ 2025-04-03 476679/week @ 2025-04-10

2,234,252 downloads per month
Used in 1,540 crates (209 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

~170–670KB
~13K SLoC