Registry / utility / wasm-debug

wasm-debug

JSON →
library0.2.0rscratesunverified

A generic Wasm DWARF transformation crate for debugging WebAssembly modules.

# Cargo.toml [dependencies] wasm-debug = "0.2.0"
INSTALL
IMPORT
SIG · WASM-DEBUG
W
wasm-debug
utilityrustv0.2.0
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.

Transform
✓ use wasm_debug::transform::Transform;

Transform a Wasm module with DWARF debug information.

use wasm_debug::transform::Transform; fn main() -> Result<(), Box<dyn std::error::Error>> { let wasm_bytes = std::fs::read("input.wasm")?; let transformed = Transform::new().run(&wasm_bytes)?; std::fs::write("output.wasm", transformed)?; Ok(()) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.2.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources
wasm-debug — cargo add wasm-debug · libregistry