panic_search 0.1.2

Automatically search for panics when they happen
Documentation
extern crate panic_search;

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

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