skia_rs_text/
lib.rs

1//! Text layout and rendering for skia-rs.
2//!
3//! This crate provides text functionality:
4//! - Font loading and management
5//! - Font manager and style sets
6//! - Text shaping (via rustybuzz/HarfBuzz)
7//! - Text layout and measurement
8//! - Rich text paragraph layout
9//! - Glyph rendering and paths
10//! - Color glyph (emoji) support
11
12#![warn(missing_docs)]
13#![warn(clippy::all)]
14
15pub mod font;
16pub mod font_mgr;
17pub mod paragraph;
18pub mod shaper;
19pub mod text_blob;
20pub mod typeface;
21
22pub use font::*;
23pub use font_mgr::*;
24pub use paragraph::*;
25pub use shaper::*;
26pub use text_blob::*;
27pub use typeface::*;