wasm_dep_analyzer

Crates.iowasm_dep_analyzer
lib.rswasm_dep_analyzer
version0.4.0
created_at2024-02-01 18:04:14.238835+00
updated_at2025-07-29 16:37:02.036278+00
descriptionWasm module dependency analysis for module resolution
homepage
repositoryhttps://github.com/denoland/wasm_dep_analyzer
max_upload_size
id1123392
size37,649
Bartek IwaƄczuk (bartlomieju)

documentation

https://docs.rs/wasm_dep_analyzer

README

wasm_dep_analyzer

An extremely lightweight Wasm module parser used in Deno to get the dependencies of a Wasm module from its bytes for the purpose of ECMAScript module resolution and TypeScript type checking.

let deps = WasmDeps::parse(&wasm_module_bytes, ParseOptions::default())?;

eprintln!("{:#?}", deps.imports);
eprintln!("{:#?}", deps.exports);
Commit count: 9

cargo fmt