annotated_string/
lib.rs

1mod annotated_range;
2mod annotation;
3#[cfg(feature = "rope")]
4mod rope;
5
6pub use annotated_range::AnnotatedRange;
7pub use annotation::{ApplyAnnotation, Annotation};
8
9#[cfg(feature = "rope")]
10pub use rope::AnnotatedRope;