minicrossterm/src/lib.rs

21 lines
334 B
Rust
Raw Normal View History

2018-01-04 00:43:54 +11:00
#[macro_use]
mod shared;
2018-01-04 00:43:54 +11:00
mod kernel;
2018-03-04 01:40:51 +11:00
mod crossterm_state;
pub mod crossterm_cursor;
pub mod crossterm_style;
pub mod crossterm_terminal;
2018-01-04 00:43:54 +11:00
use shared::traits::{Construct};
2018-03-04 01:40:51 +11:00
pub use crossterm_state::{ Context};
2018-01-04 00:43:54 +11:00
#[cfg(windows)]
extern crate winapi;
#[cfg(unix)]
2018-03-04 01:40:51 +11:00
extern crate libc;
#[cfg(unix)]
extern crate termios;
extern crate rand;