1#![deny(clippy::all)] 2#![deny(unsafe_code)] 3#![allow(clippy::needless_lifetimes)] 4 5mod rope; 6mod text; 7 8pub use rope::*; 9pub use text::*;