exhibit 0.2.0

A small Rust library for controlling the display of any Displayable type
Documentation
//! `exhibit` is a small Rust library for controlling the display
//! of any [`Display`](std::fmt::Display)able type.
//!
//! The main functionality is provided by the [`ExhibitExt`] trait.
//!
//! # Example
//!
//! ```no_run
//! use exhibit::ExhibitExt;
//!
//! let text = "\x1b[31mHello, 🌎!\x1b[0m";
//!
//! assert_eq!(
//!     text.exhibit().redact(true).to_string(),
//!     "\x1b[31m▆▅▆▆▅, ▇▇!\x1b[0m\n",
//! );
//! ```

mod exhibit;
mod exhibit_ext;
mod moves;
mod write_utils;

pub use crate::{exhibit::Exhibit, exhibit_ext::ExhibitExt};