flywheel-compositor 0.1.5

A zero-flicker terminal compositor for Agentic CLIs
Documentation
//! # Flywheel
//!
//! A zero-flicker terminal compositor for Agentic CLIs.
//!
//! Flywheel is a purpose-built TUI engine designed for high-frequency token streaming
//! (100+ tokens/s) without flickering, blocking, or latency.
//!
//! ## Core Concepts
//!
//! - **Double-buffered rendering**: Current and Next buffers with minimal diff
//! - **Dirty rectangles**: Only re-render changed regions
//! - **Actor model**: Isolated threads for input, rendering, and agent logic
//! - **Optimistic append**: Fast path for streaming text that bypasses diffing
//!
//! ## Example
//!
//! ```rust,ignore
//! use flywheel::{Buffer, Cell, Rect};
//!
//! // Create a buffer for a 80x24 terminal
//! let mut buffer = Buffer::new(80, 24);
//!
//! // Write a cell
//! buffer.set(0, 0, Cell::new('H'));
//! ```

#![warn(missing_docs)]
#![warn(clippy::pedantic)]
#![warn(clippy::nursery)]
#![deny(unsafe_code)]  // Core library denies unsafe - only FFI module may allow it
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::must_use_candidate)]
#![allow(clippy::similar_names)]

pub mod buffer;
pub mod layout;
pub mod terminal;
pub mod actor;
pub mod widget;

// FFI module has intentional unsafe code and no_mangle exports
#[allow(unsafe_code)]
#[allow(clippy::missing_safety_doc)]
pub mod ffi;

// Re-exports for convenience
pub use buffer::{Buffer, Cell, CellFlags, Modifiers, Rgb, RopeBuffer, ChunkedLine, RopeMemoryStats};
pub use layout::{Layout, Rect, Region, RegionId};
pub use actor::{Engine, EngineConfig, InputEvent, KeyCode, KeyModifiers, RenderCommand, AgentEvent, TickerActor, Tick};
pub use widget::{
    Widget, StreamWidget, StreamConfig, AppendResult, ScrollBuffer,
    TextInput, TextInputConfig,
    StatusBar, StatusBarConfig,
    ProgressBar, ProgressBarConfig, ProgressStyle,
    Terminal,
};