debug_et_diagnostics/
lib.rs

1#![allow(unused)]
2#![feature(intra_doc_pointers)]
3#![doc(issue_tracker_base_url = "https://github.com/gabrielfalcao/debug-et-diagnostics/issues/")]
4//! set of macros and tools to colorfully debug and diagnose non-trivial code
5
6pub mod color;
7
8#[doc(inline)]
9pub use color::{
10    ansi, ansi_clear, auto, back, bg, bgfg, bright, byte, byte_bin, byte_hex, couple, fg, fore,
11    from_byte, from_bytes, from_display, invert_bw, pad, pad_columns, reset, rgb_from_bytes,
12    rgb_from_display, term_cols, wrap,
13};
14
15mod macros;