keymap 1.0.0-rc.5

A lightweight key mapping library with compile-time validated derive macros and declarative configuration for multiple backends.
Documentation
1
2
3
4
5
6
7
8
9
//! # Backends
#[cfg(feature = "crossterm")]
pub mod crossterm;

#[cfg(feature = "termion")]
pub mod termion;

#[cfg(feature = "wasm")]
pub mod wasm;