wac_types/
lib.rs

1//! A library for the definition of WebAssembly component model types.
2
3#![deny(missing_docs)]
4
5mod aggregator;
6mod checker;
7mod component;
8mod core;
9mod package;
10mod targets;
11
12pub use aggregator::*;
13pub use checker::*;
14pub use component::*;
15pub use core::*;
16pub use package::*;
17pub use targets::*;