wasmtime_internal_unwinder/lib.rs
1//! Wasmtime unwinder.
2//!
3//! > **⚠️ Warning ⚠️**: this crate is an internal-only crate for the Wasmtime
4//! > project and is not intended for general use. APIs are not strictly
5//! > reviewed for safety and usage outside of Wasmtime may have bugs. If
6//! > you're interested in using this feel free to file an issue on the
7//! > Wasmtime repository to start a discussion about doing so, but otherwise
8//! > be aware that your usage of this crate is not supported.
9
10#![doc = include_str!("../README.md")]
11#![no_std]
12
13extern crate alloc;
14
15mod stackwalk;
16pub use stackwalk::*;
17mod arch;
18#[allow(
19 unused_imports,
20 reason = "`arch` is intentionally an empty module on some platforms"
21)]
22pub use arch::*;
23mod exception_table;
24pub use exception_table::*;
25mod throw;
26pub use throw::*;