#![warn(clippy::all)]
#![allow(clippy::wrong_self_convention)]
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "safe", forbid(unsafe_code))]
#![cfg_attr(feature = "nightly", feature(doc_cfg))]
#[cfg(all(feature = "std", feature = "no-std"))]
compile_error!("You can't enable the `std` and `no-std` features at the same time.");
#[cfg(all(feature = "safe", feature = "unsafe"))]
compile_error!("You can't enable the `safe` and `unsafe` features at the same time.");
#[cfg(feature = "alloc")]
extern crate alloc;
pub mod error;
mod ascii;
pub mod fmt;
pub(crate) mod macros;
pub mod unicode;
pub mod all {
#[doc(inline)]
#[allow(unused_imports)] pub use super::{ascii::*, error::*, fmt::*, unicode::all::*};
}