1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! # Cursive Extras
//!
//! Extra views for the Cursive TUI library as well some helper functions and macros
//!
//! ## To use
//! Add `cursive-extras = "0.3.0"` to Cargo.toml in your desired project
//!
//! ## Features
//! * `image_view`: Enables the `ImageView` view
mod views;
mod funcs;
mod macros;
#[cfg(test)]
mod tests;
pub use views::*;
pub use funcs::*;