A custom context for the [eyre
] crate for colorful error reports, suggestions,
and [tracing-error
] support.
Add the following to your toml file:
toml
[dependencies]
eyre = "0.3.8"
color-eyre = "0.2"
And then import the type alias from color-eyre for [eyre::Report
] or [eyre::Result
].
```rust use color_eyre::Report;
// or
fn example() -> color_eyre::Result<()> { # Ok(()) // ... } ```
If you don't plan on using tracing_error
and SpanTrace
you can disable the
tracing integration to cut down on unused dependencies:
toml
[dependencies]
eyre = "0.3.8"
color-eyre = { version = "0.2", default-features = false }
```rust,shouldpanic use coloreyre::{Help, Report}; use eyre::WrapErr; use tracing::{info, instrument}; use tracingerror::ErrorLayer; use tracingsubscriber::prelude::*; use tracing_subscriber::{fmt, EnvFilter};
fn main() -> Result<(), Report> { let fmtlayer = fmt::layer().withtarget(false); let filterlayer = EnvFilter::tryfromdefaultenv() .orelse(|| EnvFilter::try_new("info")) .unwrap();
tracing_subscriber::registry()
.with(filter_layer)
.with(fmt_layer)
.with(ErrorLayer::default())
.init();
Ok(read_config()?)
}
fn readfile(path: &str) -> Result<(), Report> { info!("Reading file"); Ok(std::fs::readto_string(path).map(drop)?) }
fn readconfig() -> Result<(), Report> { readfile("fakefile") .wraperr("Unable to read config") .suggestion("try using a file that exists next time") } ```
RUST_LIB_BACKTRACE=1
)RUST_LIB_BACKTRACE=full
)This crate works by defining a Context
type which implements [eyre::EyreContext
]
and a pair of type aliases for setting this context type as the parameter of
[eyre::Report
].
```rust use color_eyre::Context;
pub type Report = eyre::Report
backtrace::Backtrace
] and prints using [color-backtrace
]tracing_error::SpanTrace
] and prints using
[color-spantrace
]RUST_LIB_BACKTRACE=full
is setHelp
] trait and display after final reportLicensed 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.