winconsole 0.5.0

A wrapper for console-related functions in the Windows API.
docs.rs failed to build winconsole-0.5.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.
Visit the last successful build: winconsole-0.11.1

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.5"

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.5"
features = ["input", "serde"]