winconsole 0.6.1

A wrapper for console-related functions in the Windows API.
Documentation

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:

[dependencies]
winconsole = "0.6"

Then, add the following to your code:

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:

[dependencies.winconsole]
version = "0.6"
features = ["input", "serde"]