Speeding CI builds

This commit is contained in:
Lilian A. Moraru
2017-12-19 01:04:49 +02:00
committed by Andrew Gallant
parent 162e085b98
commit 636bbc7c8f
6 changed files with 31 additions and 23 deletions

View File

@@ -8,6 +8,8 @@ Note that on non-Windows platforms, this crate is empty but will compile.
# Example
```no_run
# #[cfg(windows)]
# {
use wincolor::{Console, Color, Intense};
let mut con = Console::stdout().unwrap();
@@ -15,6 +17,7 @@ con.fg(Intense::Yes, Color::Cyan).unwrap();
println!("This text will be intense cyan.");
con.reset().unwrap();
println!("This text will be normal.");
# }
```
*/