//! > **⚠️ Warning ⚠️**: this crate is an internal-only crate for the Wasmtime1//! > project and is not intended for general use. APIs are not strictly2//! > reviewed for safety and usage outside of Wasmtime may have bugs. If3//! > you're interested in using this feel free to file an issue on the4//! > Wasmtime repository to start a discussion about doing so, but otherwise5//! > be aware that your usage of this crate is not supported.67#![no_std]8#![deny(missing_docs)]9#![cfg_attr(arc_try_new, allow(unstable_features))]10#![cfg_attr(arc_try_new, feature(allocator_api))]11#![cfg_attr(docsrs, feature(doc_cfg))]12#![doc(test(attr(deny(warnings))))]13#![doc(test(attr(allow(dead_code, unused_variables, unused_mut))))]1415extern crate alloc as std_alloc;1617#[cfg(feature = "std")]18extern crate std;1920pub mod alloc;21pub mod error;22pub mod math;23pub mod slab;24pub mod undo;252627