sp_ropey/
lib.rs

1#![allow(clippy::collapsible_if)]
2#![allow(clippy::inline_always)]
3#![allow(clippy::needless_return)]
4#![allow(clippy::redundant_field_names)]
5#![allow(clippy::type_complexity)]
6#![no_std]
7
8extern crate smallvec;
9extern crate alloc;
10
11mod crlf;
12mod rope;
13mod rope_builder;
14mod slice;
15mod tree;
16
17pub mod iter;
18pub mod str_utils;
19
20pub use crate::{
21  rope::Rope,
22  rope_builder::RopeBuilder,
23  slice::RopeSlice,
24};