hel_colored/lib.rs
1//! This crate provides a fast and easy way to color and style string using ANSI escape sequences
2//! Repo: https://github.com/Hellaeh/hel-colored
3#![feature(test)]
4#![feature(const_trait_impl)]
5#![feature(formatting_options)]
6// #![feature(concat_idents)]
7#![warn(missing_docs)]
8// We do implement our own `to_string` method along `fmt::Display`
9// TODO custom formatter?
10#[allow(clippy::inherent_to_string_shadow_display)]
11mod ansi;
12mod builder;
13
14pub use ansi::ANSIString;
15pub use ansi::Color;
16pub use ansi::Colored;
17pub use ansi::Styled;
18
19pub use builder::ANSIStringBuilder;