frozen-core 0.0.21

Custom implementations and core utilities for frozen-lab crates
Documentation
#![deny(missing_docs)]
#![allow(unsafe_op_in_unsafe_fn)]
#![doc = include_str!("../README.md")]

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

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

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

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

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

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

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

pub mod utils;