1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! `unsegen` is a library facilitating the creation of text user interface (TUI) applications akin to ncurses.
//!
//! Detailed examples can be found at the root of each of the four main modules.
#[macro_use]
extern crate ndarray;
extern crate nix;
extern crate raw_tty;
extern crate smallvec;
extern crate termion;
extern crate unicode_segmentation;
extern crate unicode_width;

pub mod base;
pub mod container;
pub mod input;
pub mod widget;