tui 0.1.0

A library to build rich user interfaces or dashboard for terminals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate termion;
extern crate rustbox;
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate log;
extern crate cassowary;
extern crate unicode_segmentation;
extern crate unicode_width;

pub mod buffer;
pub mod symbols;
pub mod terminal;
pub mod widgets;
pub mod style;
pub mod layout;

pub use self::terminal::{Terminal, Backend, TermionBackend, RustboxBackend};