1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![type_length_limit = "5795522"]
//! Definition and parsing of wasm interfaces
//!
//! wasm interfaces ensure wasm modules conform to a specific shape
//! they do this by asserting on the imports and exports of the module.
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]

pub mod interface;
pub mod interface_matcher;
pub mod parser;
#[cfg(feature = "validation")]
pub mod validate;

pub use interface::*;