rustbox-multithread-0.8.1 has been yanked.
Rustbox
Rustbox is a Rust implementation of termbox.
Currently, this is just a wrapper of the C library by nsf, though my plan is to convert it to be a pure Rust implementation and remove the requirement on the C library.
The original implementation of this was inspired by Aaron Pribadi, so big props to him for the original work.
NOTE This is under development, and the APIs may change as I figure out more how Rust works and as the language itself changes
Usage
In your Cargo.toml
add the following:
[]
= "*"
You can also use the current git version by instead adding:
[]
= "https://github.com/gchp/rustbox.git"
Then, in your src/example.rs
:
extern crate rustbox;
use Error;
use Default;
use ;
use Key;
NOTE: this example can also be run with cargo run --example hello-world
.