mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-27 19:26:09 +00:00
39405ba1ec
We now use mostly indexed spans into a source string. Indexed Spans can still be resolved to a string slice when needed.
9 lines
137 B
Rust
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;
|