terminator 0.2.0-alpha

Formatter for pretty panics and errors
Documentation
1
2
3
4
5
6
7
8
9
10
11
macro_rules! cfg_compat {
    ($($item:item)*) => {
        $(
        #[cfg(feature = "compat")]
        #[cfg_attr(docsrs, doc(cfg(feature = "compat")))]
        $item
        )*
    };
}

pub(crate) use cfg_compat;