waffle/src/lib.rs
2023-02-24 21:28:40 -08:00

28 lines
444 B
Rust

//! WAFFLE Wasm analysis framework.
#![allow(dead_code)]
// Re-export wasmparser for easier use of the right version by our embedders.
pub use wasmparser;
mod backend;
pub mod cfg;
pub mod entity;
mod errors;
mod frontend;
mod ir;
mod op_traits;
mod ops;
pub mod passes;
mod scoped_map;
pub use errors::*;
pub use ir::*;
pub use ops::{Ieee32, Ieee64, Operator};
mod interp;
pub use interp::*;
#[cfg(feature = "fuzzing")]
pub mod fuzzing;