9 releases

0.2.5 Feb 26, 2024
0.2.4 Feb 25, 2024
0.1.2 Oct 2, 2019

#297 in WebAssembly

Download history 535/week @ 2024-02-23 117/week @ 2024-03-01 10/week @ 2024-03-08 15/week @ 2024-03-15 32/week @ 2024-03-29 1/week @ 2024-04-05 86/week @ 2024-04-19 11/week @ 2024-04-26

97 downloads per month

MIT/Apache

49KB
1K SLoC

wasm-graph

WebAssembly format in graph representation!

Build Status crates.io link

Documentation

Usage

Add to Cargo.toml

[dependencies]
wasm-graph = "0.1"

and then


let module = wasm_graph::parse_file("hello.wasm").unwrap();
assert!(module.funcs.len() > 0);

License

wasm-graph is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), at your choice.

See LICENSE-APACHE, and LICENSE-MIT for details.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in wasm-graph by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

WebAssembly binary format graph representation

Dependencies

~305KB