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