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 names;
10mod package;
11mod targets;
12
13pub use aggregator::*;
14pub use checker::*;
15pub use component::*;
16pub use core::*;
17pub use names::*;
18pub use package::*;
19pub use targets::*;