9 lines
189 B
Rust
9 lines
189 B
Rust
|
//! WAFFLE Wasm analysis framework.
|
||
|
|
||
|
// Re-export wasmparser and wasmencoder for easier use of the right
|
||
|
// version by our embedders.
|
||
|
pub use wasmparser;
|
||
|
pub use wasm_encoder;
|
||
|
|
||
|
pub mod ir;
|