cursive/src/utils/mod.rs
Alexandre Bury 39405ba1ec Refactor spans and markup
We now use mostly indexed spans into a source string.
Indexed Spans can still be resolved to a string slice when needed.
2018-01-15 13:53:27 -08:00

9 lines
137 B
Rust

//! Toolbox to make text layout easier.
mod reader;
pub mod span;
pub mod lines;
pub mod markup;
pub use self::reader::ProgressReader;