stack_string/lib.rs
1#![allow(clippy::too_many_lines)]
2#![allow(clippy::module_name_repetitions)]
3#![allow(clippy::similar_names)]
4#![allow(clippy::used_underscore_binding)]
5#![allow(clippy::unsafe_derive_deserialize)]
6
7pub mod small_string;
8pub mod stack_cow;
9pub mod stack_string;
10
11pub use crate::{small_string::SmallString, stack_cow::StackCow, stack_string::StackString};
12
13pub use smartstring::MAX_INLINE;