radicle-term 0.18.0

Terminal library used by the Radicle CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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;