A Rust library that makes panics a little less painful by nicely colorizing them and printing the relevant source snippets.
toml
[dependencies]
color-backtrace = { version = "0.2" }
To enable it, simply place this code somewhere in your app initialization code:
rust
color_backtrace::install();
If you want to customize some settings, you can instead do:
rust
use color_backtrace::{install_with_settings, Settings};
install_with_settings(Settings::new().message("Custom message!"));
failure-bt
— Experimental support for printing failure::Backtrace
backtraces.failure
backtraces are opaque and so this feature uses unsafe code to
transmute the struct into a non private struct to allow access to the internal
backtrace::Backtrace
object.
The code is dependent on and only tested against failure version 0.1.5
and is
considered a temporary hack while we work on getting backtraces from errors
exposed properly. This feature is marked as unsafe, it relies on UB to work,
and there is no guarantee that rust will pick this layout on a different crate
type. User discretion is advised.
To enable, include the following in your Cargo.toml
toml
[dependencies]
color-backtrace = { version = "0.2", features = ["failure-bt"] }