okansi 0.2.0

An ok library for creating ANSI terminal styles
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(target_os = "windows")]
extern crate winapi;

/// Windows related functionality
#[cfg(windows)]
pub mod windows;

/// ANSI escape code constants
pub mod codes;
pub use codes::bitmasks;

mod color;
pub use color::{Color, PaletteColor};

mod style;
pub use style::AnsiStyle;