wasm_interface/
lib.rs

1#![type_length_limit = "5795522"]
2//! Definition and parsing of wasm interfaces
3//!
4//! wasm interfaces ensure wasm modules conform to a specific shape
5//! they do this by asserting on the imports and exports of the module.
6
7pub mod interface;
8pub mod parser;
9#[cfg(feature = "validation")]
10pub mod validate;
11
12pub use interface::*;