stack-string 0.6.1

A wrapper around SmartString which adds support for various extensions
Documentation
#![allow(clippy::must_use_candidate)]
#![allow(clippy::too_many_lines)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::cast_precision_loss)]
#![allow(clippy::cast_sign_loss)]
#![allow(clippy::cast_possible_truncation)]
#![allow(clippy::cast_possible_wrap)]
#![allow(clippy::similar_names)]
#![allow(clippy::shadow_unrelated)]
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::used_underscore_binding)]
#![allow(clippy::unsafe_derive_deserialize)]

#[cfg(feature = "diesel_types")]
#[macro_use]
extern crate diesel;

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

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

pub use smartstring::MAX_INLINE;