1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Definition and parsing of wasm contracts
//!
//! wasm contracts ensure wasm modules conform to a specific shape
//! they do this by asserting on the imports and exports of the module.

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

pub use contract::*;