You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tui-rs/src/lib.rs

22 lines
298 B
Rust

8 years ago
extern crate termion;
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate log;
8 years ago
extern crate cassowary;
mod buffer;
mod util;
8 years ago
pub mod terminal;
pub mod widgets;
pub mod style;
pub mod layout;
pub use self::terminal::Terminal;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {}
}