Skip to main content

color_output/
lib.rs

1//! color-output
2//!
3//! An atomic output library based on Rust that supports output
4//! functionalities through functions, builders, and other methods.
5//! It allows customization of text and background colors.
6
7mod color;
8mod task;
9mod text;
10mod utils;
11
12pub use {color::*, utils::*};
13
14pub use hyperlane_time::*;
15
16use {task::*, text::*};
17
18use std::{
19    borrow::Cow,
20    fmt::{self, Display},
21    io::Write,
22    ops::Deref,
23    slice::Iter,
24};