irox-tools 0.11.1

Stuff that should have been in the Rust STL, but aren't
Documentation
// SPDX-License-Identifier: MIT
// Copyright 2025 IROX Contributors
//

#![forbid(unsafe_code)]
#![warn(clippy::alloc_instead_of_core)]
#![warn(clippy::std_instead_of_alloc)]
#![warn(clippy::std_instead_of_core)]
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(docsrs, feature(doc_cfg))]
extern crate alloc;
extern crate core;
pub extern crate irox_bits;

pub use primitives::*;
pub use util::*;

#[macro_use]
pub mod ansi_colors;
pub mod arrays;
#[macro_use]
pub mod assert;
pub mod codec;
#[macro_use]
pub mod fmt;
pub mod hex;
pub mod iterators;
pub mod options;
pub mod random;
cfg_feature_std! {
    pub mod read;
    pub mod map;
    pub mod sync;
}
cfg_feature_alloc! {
    pub mod packetio;
    pub mod vec;

    mod str;
    pub use str::*;
}

pub mod errors;
pub mod fs;
pub mod hash;
mod primitives;

pub mod buf;
mod util;
#[macro_use]
pub mod macros;
pub mod math;