wasmer_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#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
7
8pub mod interface;
9pub mod interface_matcher;
10pub mod parser;
11#[cfg(feature = "validation")]
12pub mod validate;
13
14pub use interface::*;