prototty_unix 0.27.0

Prototty context for unix terminals.
Documentation
extern crate ansi_colour;
extern crate libc;
#[cfg(feature = "storage")]
extern crate prototty_file_storage;
extern crate term;

extern crate prototty_grid;
pub extern crate prototty_input;
pub extern crate prototty_render;

mod context;
mod error;
mod terminal;

pub use self::context::*;
pub use self::error::*;
#[cfg(feature = "storage")]
pub use prototty_file_storage::{FileStorage, LoadError, Storage, StoreError};
pub use prototty_render::{grey24, rgb24, Coord, Rgb24, Size};