https://github.com/nikvolf/wasm-graph
https://github.com/nikvolf/wasm-graph
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nikvolf/wasm-graph
- Owner: NikVolf
- License: apache-2.0
- Created: 2019-09-28T08:50:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-27T07:58:46.000Z (over 2 years ago)
- Last Synced: 2025-08-16T23:52:58.059Z (10 months ago)
- Language: Rust
- Size: 59.6 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# wasm-graph
WebAssembly format in graph representation!
[](https://travis-ci.org/nikvolf/wasm-graph)
[](https://crates.io/crates/wasm-graph)
[Documentation](https://docs.rs/wasm-graph)
## Usage
Add to Cargo.toml
```toml
[dependencies]
wasm-graph = "0.2"
```
and then
```rust
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.