1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#![doc(html_root_url = "https://docs.rs/maybe-unwind/0.2.1")]
#![deny(missing_docs)]
#![forbid(clippy::todo, clippy::unimplemented)]
#![cfg_attr(feature = "nightly", feature(backtrace))]
#![cfg_attr(feature = "nightly", feature(doc_cfg))]
mod hook;
mod tls;
mod unwind;
pub use crate::{
hook::capture_panic_info,
unwind::{maybe_unwind, Location, Unwind},
};
#[allow(deprecated)]
pub use crate::hook::{reset_hook, set_hook};
cfg_if::cfg_if! {
if #[cfg(feature = "futures")] {
mod futures;
pub use futures::{FutureMaybeUnwindExt, MaybeUnwind};
}
}