egui_keybind/
lib.rs

1//! # egui-keybind, a hotkey library for [egui](https://github.com/emilk/egui)
2//!
3//! This library provides a simple [egui](https://github.com/emilk/egui) widget for keybindings (hotkeys).
4//!
5//! # Serde
6//!
7//! For serde support, enable the `serde` feature.
8//!
9//! # License
10//!
11//! Public domain or MIT or Boost Software License
12
13#![warn(missing_docs)]
14
15mod bind;
16mod keybind;
17pub use bind::*;
18pub use keybind::*;