wasm-interface 0.1.0

WASM Interface definition and parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![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.

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

pub use interface::*;