eyre 0.6.2

Flexible concrete Error Reporting type built on std::error::Error with customizable Reports
Documentation
#[test]
fn test_context() {
    use eyre::{eyre, Report};

    let error: Report = eyre!("oh no!");
    let _ = error.context();
}