//! Wasmtime unwinder.1//!2//! > **⚠️ Warning ⚠️**: this crate is an internal-only crate for the Wasmtime3//! > project and is not intended for general use. APIs are not strictly4//! > reviewed for safety and usage outside of Wasmtime may have bugs. If5//! > you're interested in using this feel free to file an issue on the6//! > Wasmtime repository to start a discussion about doing so, but otherwise7//! > be aware that your usage of this crate is not supported.89#![doc = include_str!("../README.md")]10#![no_std]1112extern crate alloc;1314mod stackwalk;15pub use stackwalk::*;16mod arch;17#[allow(18unused_imports,19reason = "`arch` is intentionally an empty module on some platforms"20)]21pub use arch::*;22mod exception_table;23pub use exception_table::*;24mod throw;25pub use throw::*;262728