1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Cursive Extras
//!
//! Extra views for the Cursive TUI library as well some helper functions and macros
//! 
//! ## Features
//! * `image_view`: Enables the `ImageView` view
//! * `tab_dialog`: Enables the `TabDialog` view
//! * `buffered_backend`: Enables a termion based buffered backend

mod views;
mod funcs;
mod macros;
#[cfg(test)]
mod tests;

pub use views::*;
pub use funcs::*;