//! A decoder for WebAssembly modules in the binary format.
//!
//! This library implements the Binary format of the WebAssembly [specification],
//! version 2.
//!
//! The main entry point is the [`decode_module`] function.
//!
//! [specification]: https://www.w3.org/TR/wasm-core-2/
pub use Module;
pub use decode_module;
pub use Expr;
pub use read_byte;