1//! A small library to track human-readable text positions. 2 3mod insert; 4pub use insert::InsertPosition; 5 6mod position; 7pub(crate) use position::TextPosition; 8 9mod range; 10pub use range::TextRange; 11