wac-types 0.10.0

A library for the definition of WebAssembly component model types.
Documentation
//! A library for the definition of WebAssembly component model types.

#![deny(missing_docs)]

mod aggregator;
mod checker;
mod component;
mod core;
mod names;
mod package;
mod targets;

pub use aggregator::*;
pub use checker::*;
pub use component::*;
pub use core::*;
pub use names::*;
pub use package::*;
pub use targets::*;