terminput_crossterm/
lib.rs

1#![deny(clippy::unwrap_used)]
2#![warn(missing_docs, missing_debug_implementations)]
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![doc = include_str!("../README.md")]
5
6#[cfg(any(feature = "crossterm_0_28", feature = "crossterm_0_29"))]
7mod mapping;
8#[cfg(any(feature = "crossterm_0_28", feature = "crossterm_0_29"))]
9pub use mapping::*;