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
50
51
52
53
54
55
//! This crate guarantees that your application is free of panicking branches
//!
//! If your *binary* crate contains at least one panicking branch *linking* will fail.
//!
//! This crate has no effect on libraries. It's meant to be a direct dependency of binary crates.
//!
//! This crate and your program *must* be compiled using the release profile or your crate will
//! always fail to link.
//!
//! # Example
//!
//! ```
//! #![no_main]
//! #![no_std]
//!
//! #[cfg(debug_assertions)]
//! use panic_halt as _;
//!
//! // only link this crate when using the release profile
//! #[cfg(not(debug_assertions))]
//! use panic_never as _;
//! ```
//!
//! If your program contains at least one panicking branch you'll see the following linker error:
//!
//! ``` text
//! (..)
//! error: linking with `rust-lld` failed: exit code: 1
//! (..)
//! = note: rust-lld: error: undefined symbol:
//! error(panic-never): your program contains at least one panicking branch
//! ```
//!
//! # Minimum Supported Rust Version (MSRV)
//!
//! This crate is guaranteed to compile on stable Rust 1.31 and up. It *might* compile on older
//! versions but that may change in any new patch release.
use PanicInfo;
!