crashreport 1.0.1

Automatic GitHub crash reporting system for any Rust crate
Documentation
1
2
3
4
5
6
7
use crashreport::crashreport;

pub fn main() {
    crashreport!();

    panic!("This is a panic!");
}