better-panic 0.3.0

Pretty panic backtraces inspired by Python's tracebacks.
Documentation
fn bar() {
    vec![42u32][10];
}

fn foo() {
    bar();
}

fn main() {
    better_panic::Settings::debug()
        .most_recent_first(false)
        .lineno_suffix(true)
        .install();
    foo();
}