tuigui 0.23.0

An easy-to-use, highly extensible, and speedy TUI library.
Documentation
pub mod content_processor_creation {
    pub use crate::{
        ContentProcessor,
        Style,
        StyleGround,
        StylePullLayer,
        Color,
        AnsiColor,
        Effect,
    };
}

pub mod backend_creation {
    pub use crate::{
        Backend,
        ClearType,
        Size,
        Position,
    };
}

pub mod widget_creation {
    pub use crate::{
        Widget,
        WidgetInfo,
        WidgetSizeInfo,
        WidgetSizeInfoCanChange,
        Canvas,
        Transform,
        Size,
        Position,
        WidgetData,
        Content,
        Style,
        StyleGround,
        StylePullLayer,
        Color,
        AnsiColor,
        event::{ self, EventStateFrame },
    };
}

pub mod animation_creation {
    pub use crate::{
        Animation,
        Transform,
        Size,
        Position,
    };
}

pub mod shader_creation {
    pub use crate::{
        Shader,
        ShaderConfig,
        Canvas,
        Position,
        Content,
        Style,
        StyleGround,
        StylePullLayer,
        Color,
        AnsiColor,
    };
}