This crate allows you to read the user input cross-platform. It supports all UNIX and windows terminals down to windows 7 (not all terminals are tested see Tested Terminals for more info)
This crate is a sub-crate of crossterm to read the user input and can be used individually.
Other sub-crates are:
When you want to use other modules as well you might want to use crossterm with feature flags.
All examples of how crossterm_input
works can be found in the
examples repository.
Add the crossterm_input
package to your Cargo.toml
file.
[dependencies]
crossterm_input = "0.4"
Import the crossterm_input
modules you want to use.
rust
pub use crossterm_input::{input, AsyncReader, InputEvent, KeyEvent, MouseButton, MouseEvent, SyncReader, TerminalInput};
These are the features of this crate:
crossterm_screen
)The examples repository has more complete and verbose examples.
Simple Readings ```rust let mut input = input();
match input.read_char() { Ok(s) => println!("char typed: {}", s), Err(e) => println!("char error : {}", e), }
match input.read_line() { Ok(s) => println!("string typed: {}", s), Err(e) => println!("error: {}", e), } ```
Read input events synchronously or asynchronously.
```rust // make sure to enable raw mode, this will make sure key events won't be handled by the terminal // it's self and allows crossterm to read the input and pass it back to you. let screen = RawScreen::intorawmode();
let mut input = input();
// either read the input synchronously let stdin = input.read_sync();
// or asynchronously let stdin = input.read_async();
if let Some(keyevent) = stdin.next() { match keyevent { InputEvent::Keyboard(event: KeyEvent) => match event { /* check key event / } InputEvent::Mouse(event: MouseEvent) => match event { / check mouse event */ } } } ```
Enable mouse input events.
```rust let input = input();
// enable mouse events to be captured. input.enablemousemode().unwrap();
// disable mouse events to be captured. input.disablemousemode().unwrap(); ```
This crate supports all Unix terminals and windows terminals down to Windows 7 but not all of them have been tested. If you have used this library for a terminal other than the above list without issues feel free to add it to the above list, I really would appreciate it.
This project is licensed under the MIT License - see the LICENSE.md file for details