ansi-colors is a rust crate(library) that should be used to format terminal string outputs. ansi-colors offers the ansi string coloring pallet, and the string formatting pallet in order to help you color, format and beutify you output! ansi-colors works best(for now) with the ubuntu terminal coloring scheme, but it still may work on some windows and mac computers.
console
:~$ cargo install ansi-colors
console
:~$ git clone https://github.com/l-tools/ansi-colors ansi-colors
:~$ cd ansi-colors
:~$ cargo build
Add the following to your Cargo.toml:
rust
[dependencies]
ansi-colors = "0.3.0"
First use import the crate:
rust
extern crate ansi_colors;
use ansi_colors::*;
Then you create a new mutable coloured string using an &str primitive type
rust
fn main(){
let mut str1 = ColouredStr("hello ansi");
Next comes the formatting:
rust
str1.blue();
str1.bold();
str1.underline();
Finally you print:
rust
println!("{}",str1);
}
Together it looks like that:
rust
fn main(){
let mut str1 = ColouredStr("hello ansi");
str1.blue();
str1.bold();
str1.underline();
println!("{}",str1);
}
Or this:
rust
fn main(){
let mut str1 = ColouredStr("ERROR!!!!!");
str1.red();
str1.bold();
str1.blink();
str1.underline();
println!("{}",str1);
}
You can use a preset design for special messages:
rust
fn main(){
let mut str1 = ColouredStr("ERROR!!!!!");
str1.to_error();
println!("{}",str1);
}
and this will print it in error format!
1) the ability to use them in the same row(str1.blue().bold() for example). 2) more high level formatting options(json parsin, XML parsing and such). 3) integrating with termi-graphics(my other crate), and creating some higher level api for the terminal graphics.
This crate is primarily distributed under the terms of the MIT license See LICENSE-MIT for details.