iced-pancurses 0.1.2

Toy renderer for iced based on pancurses
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Pancurses iced Renderer implementation.
//! Allows to create TUI application using iced as the GUI framework

mod colors;
mod primitive;
mod renderer;
mod sandbox;

// Conveniently reexports common structs that the user might want to use in their application.
pub use renderer::PancursesRenderer;
pub use sandbox::Sandbox;