flywheel-compositor 0.1.4

A zero-flicker terminal compositor for Agentic CLIs
Documentation
//! Buffer module: Core data structures for the double-buffer rendering system.
//!
//! This module contains:
//! - [`Cell`]: The atomic unit of display, optimized for cache efficiency
//! - [`Buffer`]: A grid of cells representing the terminal screen
//! - [`Rgb`]: True-color representation
//! - [`Modifiers`]: Text style bitflags
//! - [`diff`]: Diffing engine for generating minimal ANSI sequences
//! - [`rope`]: Rope-based buffer for efficient large document storage

mod cell;
#[allow(clippy::module_inception)]
mod buffer;
pub mod diff;
pub mod rope;

pub use cell::{Cell, CellFlags, Modifiers, Rgb};
pub use buffer::Buffer;
pub use rope::{RopeBuffer, ChunkedLine, RopeMemoryStats};