Registry / other / wasmparser-nostd

wasmparser-nostd

JSON →
library0.100.2rscratesunverified

A simple event-driven library for parsing WebAssembly binary files.

# Cargo.toml [dependencies] wasmparser-nostd = "0.100.2"
INSTALL
IMPORT
SIG · WASMPARSER-NOSTD
W
wasmparser-nostd
otherrustv0.100.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Parser
use wasmparser_nostd::Parser;

Parse a WebAssembly binary using the event-driven parser

use wasmparser_nostd::Parser; fn main() { let wasm_bytes = &[0x00, 0x61, 0x73, 0x6d]; // minimal wasm header let parser = Parser::new(wasm_bytes); for item in parser { println!("Parsed item: {:?}", item); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.100.2latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources
wasmparser-nostd — cargo add wasmparser-nostd · libregistry