azul-layout 0.0.9

Layout solver + font and image loader the Azul GUI framework
Documentation
//! Text layout and shaping system.
//!
//! This module provides text shaping, inline layout, editing, selection,
//! and font caching. Submodules:
//!
//! - `cache`: unified text layout cache (`UnifiedLayout`)
//! - `default`: default text shaping and line-breaking
//! - `edit`: text editing operations
//! - `glyphs`: glyph positioning and cluster mapping
//! - `knuth_plass`: Knuth-Plass line-breaking algorithm
//! - `script`: Unicode script detection
//! - `selection`: text selection and cursor utilities

pub mod cache;
pub mod default;
pub mod edit;
pub mod glyphs;
pub mod knuth_plass;
pub mod script;
pub mod selection;