Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/wast/src/lib.rs
1691 views
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
17