wasmtime_wast/
lib.rs

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