1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#![feature(collections_range)]

#[macro_use]
extern crate bitfield;
extern crate itertools;
extern crate termion;
extern crate unicode_width;

pub mod delta;
pub mod line;
pub mod style;
pub mod styledtext;
pub mod terminal;
pub mod termrect;

pub use style::{Color, Style, StyleAttr};
pub use termrect::TermRect;