winconsole

This crate provides a wrapper for console-related functions in the Windows API.
Check out the documentation here.

Usage

Add the following to Cargo.toml: toml [dependencies] winconsole = "0.6" Then, add the following to your code: rust extern crate winconsole;

There are two optional features: input and serde.
* input - Includes input-related functions. * serde - Support for serde.

Additional features must be added to Cargo.toml: toml [dependencies.winconsole] version = "0.6" features = ["input", "serde"]