panic_search 0.1.4

Automatically search for panics when they happen
Documentation
1
2
3
4
5
6
7
extern crate panic_search;

fn main() {
    panic_search::enable();

    None::<i32>.unwrap();
}