cognitive_inputs/lib.rs
1// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of
2// the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/
3
4//! Tools for handling events from input devices.
5
6extern crate xkbcommon;
7extern crate cognitive_qualia as qualia;
8
9pub mod codes;
10
11pub mod keyboard_state;
12pub use keyboard_state::{KeyboardState, KeyMods};
13
14pub mod keymap;
15pub use keymap::{Keymap};