quork 0.9.1

A collection of small things that don't deserve their own crate
Documentation
#![warn(clippy::pedantic)]
#![warn(missing_docs)]
#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "alloc")]
extern crate alloc;

pub mod prelude {
    //! `use quork::prelude::*` To include common helpful items

    #[cfg(feature = "traits")]
    pub use crate::traits::prelude::*;

    #[cfg(feature = "macros")]
    pub use crate::macros::*;

    #[cfg(feature = "root")]
    pub use crate::root::is_root;
}

#[cfg(windows)]
pub mod win;

#[cfg(unix)]
pub mod unix;

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

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

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

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

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

#[cfg(feature = "alloc")]
/// Truncation helpers for truncating strings when formatting
pub mod truncate;