error_chain_compat_011/
lib.rs

1//! Exports the 0.11 error chain types.
2//!
3//! This is useful for systems that want to work with the error chain traits
4//! and types even if they are from different versions of error chain.
5
6extern crate error_chain;
7
8pub use error_chain::{Backtrace, DisplayChain, Iter, ChainedError, ExitCode};