1 2 3 4 5 6 7 8 9
//! Terminal-independent text, width, and layout primitives. pub mod color; pub mod line_truncation; pub mod live_wrap; pub mod table_detect; pub mod text_formatting; pub mod width; pub mod wrapping;