colored 2.1.0

The most simple way to add colors in your terminal
Documentation
1
2
3
4
5
6
7
8
extern crate colored;

use colored::Colorize;
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    Err("ERROR".red())?
}