wincolor

Crates.iowincolor
lib.rswincolor
version1.0.3
sourcesrc
created_at2016-11-20 20:44:40.055503
updated_at2020-01-11 15:07:48.314839
descriptionDEPRECATED. Use winapi-util instead.
homepagehttps://github.com/BurntSushi/termcolor/tree/master/wincolor
repositoryhttps://github.com/BurntSushi/termcolor/tree/master/wincolor
max_upload_size
id7316
size13,660
Andrew Gallant (BurntSushi)

documentation

https://docs.rs/wincolor

README

This crate has reached its end-of-life and is now deprecated.

This crate was rolled into the winapi-util crate since wincolor is quite small and didn't otherwise have a good reason for living life as a distinct crate.

The console module of winapi-util is a drop-in replacement for wincolor.

wincolor

A simple Windows specific API for controlling text color in a Windows console. The purpose of this crate is to expose the full inflexibility of the Windows console without any platform independent abstraction.

Windows build status

Dual-licensed under MIT or the UNLICENSE.

Documentation

https://docs.rs/wincolor

Usage

Add this to your Cargo.toml:

[dependencies]
wincolor = "0.1"

and this to your crate root:

extern crate wincolor;

Example

This is a simple example that shows how to write text with a foreground color of cyan and the intense attribute set:

use wincolor::{Console, Color, Intense};

let mut con = Console::stdout().unwrap();
con.fg(Intense::Yes, Color::Cyan).unwrap();
println!("This text will be intense cyan.");
con.reset().unwrap();
println!("This text will be normal.");
Commit count: 1036

cargo fmt