stack-string 1.1.5

A wrapper around SmartString which adds support for various extensions
Documentation
#![allow(clippy::too_many_lines)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::similar_names)]
#![allow(clippy::used_underscore_binding)]
#![allow(clippy::unsafe_derive_deserialize)]

pub mod small_string;
pub mod stack_cow;
pub mod stack_string;

#[cfg(feature = "smart_string")]
pub mod smart_string;

pub const MAX_INLINE: usize = std::mem::size_of::<String>();

pub use crate::{small_string::SmallString, stack_cow::StackCow, stack_string::StackString};

#[cfg(feature = "smart_string")]
pub use crate::smart_string::SmartString;