crossterm_input 0.4.1

A cross-platform library for reading userinput.
Documentation
1
2
3
4
5
6
7
8
9
10
#![deny(unused_imports)]

pub use crossterm_screen::{IntoRawMode, RawScreen};

pub use self::input::{
    input, AsyncReader, InputEvent, KeyEvent, MouseButton, MouseEvent, SyncReader, TerminalInput,
};

mod input;
mod sys;