iced_pancurses/
lib.rs

1//! Pancurses iced Renderer implementation.
2//! Allows to create TUI application using iced as the GUI framework
3
4mod colors;
5mod primitive;
6mod renderer;
7mod sandbox;
8
9// Conveniently reexports common structs that the user might want to use in their application.
10pub use renderer::PancursesRenderer;
11pub use sandbox::Sandbox;