r3bl_tui 0.7.7

TUI library to build modern apps inspired by React, Elm, with Flexbox, CSS, editor component, emoji support, and more
Documentation
// Copyright (c) 2022-2025 R3BL LLC. Licensed under Apache License, Version 2.0.

// Connect to source file.
pub mod ansi;
pub mod color_wheel;
pub mod common;
pub mod coordinates;
pub mod decl_macros;
pub mod glyphs;
pub mod graphemes;
pub mod heap_alloc_types;
pub mod log;
pub mod misc;
pub mod osc;
pub mod pty;
pub mod pty_mux;
pub mod resilient_reactor_thread;
pub mod script;
pub mod stack_alloc_types;
pub mod storage;
pub mod term;
pub mod terminal_io;
pub mod test_fixtures;
pub mod tui_style;
pub mod tui_styled_text;

// Re-export.

// Re-export.
pub use ansi::*;
pub use color_wheel::*;
pub use common::*;
pub use coordinates::*;
pub use decl_macros::*;
pub use glyphs::*;
pub use graphemes::*;
pub use heap_alloc_types::*;
pub use log::*;
pub use misc::*;
pub use osc::*;
pub use pty::*;
pub use pty_mux::*;
pub use script::*;
pub use stack_alloc_types::*;
pub use storage::*;
pub use term::*;
pub use terminal_io::*;
pub use test_fixtures::*;
pub use tui_style::*;
pub use tui_styled_text::*;