easy_imgui_window/lib.rs
/*!
* This crate makes it easy to build applications with Dear ImGui as their main GUI.
*
* # Features
* * `clipboard` (default): clipboard integration, via the `arboard` crate.
* * `freetype`: use `libfreetype` for TTF font loading. It requires a precompiled native FreeType
* shared library.
*/
pub mod conv;
mod window;
pub use easy_imgui;
pub use easy_imgui_renderer;
pub use easy_imgui_sys;
pub use glutin;
pub use window::*;
pub use winit;