winconsole
This crate provides a wrapper for console-related functions in the Windows API.
Usage
Add the following to Cargo.toml:
[]
= "0.11"
Then, add the following to your code:
extern crate winconsole;
There are a few optional features:
cgmath- Conversions for the cgmath Vector2 type.input- Includes input-related functions.serde- Support for serde.window- Includes window-related functions.
These features must be added to Cargo.toml:
[]
= "0.11"
= ["cgmath", "input", "serde", "window"]