waffle/src/lib.rs

11 lines
226 B
Rust
Raw Normal View History

2021-11-13 06:16:54 +00:00
//! WAFFLE Wasm analysis framework.
// Re-export wasmparser and wasmencoder for easier use of the right
// version by our embedders.
pub use wasm_encoder;
pub use wasmparser;
2021-11-13 06:16:54 +00:00
pub mod frontend;
2021-11-13 06:16:54 +00:00
pub mod ir;
2021-11-13 09:41:32 +00:00
pub mod op_traits;