1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#[macro_use]
extern crate crossterm_utils;
extern crate crossterm_cursor;

#[cfg(windows)]
extern crate crossterm_winapi;

#[cfg(unix)]
extern crate libc;

mod sys;
mod terminal;

pub use self::terminal::{terminal, ClearType, Terminal};