18 lines
349 B
Rust
18 lines
349 B
Rust
//! A dead simple ANSI terminal color painting library.
|
|
//!
|
|
//! This library is a port of the `yansi` crate.
|
|
//! Copyright (c) 2017 Sergio Benitez
|
|
//!
|
|
mod color;
|
|
mod paint;
|
|
mod style;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
pub use color::Color;
|
|
pub use paint::Filled;
|
|
pub use paint::Paint;
|
|
pub use paint::TerminalFile;
|
|
pub use paint::paint;
|
|
pub use style::Style;
|