docs.rs failed to build ansi_term-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
ansi_term-0.12.1
rust-ansi-term 
This is a library for controlling colours and formatting, such as red bold text or blue underlined text, on ANSI terminals.
View the Rustdoc
Installation
It uses Cargo, Rust's package manager. You can depend on this library by adding this Git repository to your Cargo dependencies:
[]
= "https://github.com/ogham/rust-ansi-term.git"
Usage
You can format strings by calling the paint
method on a Colour or a
Style object, passing in the string you want to format. Here are some
examples:
extern crate ansi_term;
use ;
use Plain;
use Paint;
Available colours are Black, Red, Yellow, Green, Blue, Purple, Cyan,
White, and Fixed(n) up to 256. Available formattings are .bold()
,
.underline()
, and .on(colour)
.