xref: /wasmtime-44.0.1/crates/wast/src/lib.rs (revision 90ac295e)
1 //! Implementation of the WAST text format for wasmtime.
2 
3 #![deny(missing_docs)]
4 
5 #[cfg(feature = "component-model")]
6 mod component;
7 mod core;
8 mod spectest;
9 mod wast;
10 
11 pub use crate::spectest::{SpectestConfig, link_spectest};
12 pub use crate::wast::{Async, WastContext};
13 
14 /// Version number of this crate.
15 pub const VERSION: &str = env!("CARGO_PKG_VERSION");
16