#error #report #reporter #context #eyre #handler #ontop

simple-eyre

One of the simplest error reporters one can build ontop of eyre, defining only an error report

4 releases (2 breaking)

0.3.1 Jun 24, 2021
0.3.0 Jul 13, 2020
0.2.0 May 18, 2020
0.1.0 Feb 5, 2020

#744 in Rust patterns

Download history 49/week @ 2023-11-27 133/week @ 2023-12-04 62/week @ 2023-12-11 73/week @ 2023-12-18 44/week @ 2023-12-25 33/week @ 2024-01-01 73/week @ 2024-01-08 52/week @ 2024-01-15 38/week @ 2024-01-22 25/week @ 2024-01-29 47/week @ 2024-02-05 87/week @ 2024-02-12 75/week @ 2024-02-19 90/week @ 2024-02-26 125/week @ 2024-03-04 49/week @ 2024-03-11

353 downloads per month
Used in 6 crates

MIT/Apache

9KB
63 lines

simple-eyre

Latest Version Rust Documentation

This library provides a custom eyre::EyreHandler type for usage with eyre that provides a minimal error report with no additional context. Essentially the minimal implementation of an error reporter.

Setup

Add the following to your toml file:

[dependencies]
simple-eyre = "0.3"

Then install the hook handler before constructing any eyre::Report types.

Example

use simple_eyre::eyre::{eyre, WrapErr, Report};

fn main() -> Result<(), Report> {
    simple_eyre::install()?;

    let e: Report = eyre!("oh no this program is just bad!");

    Err(e).wrap_err("usage example successfully experienced a failure")
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~185KB