Skip to main content

frozen_core/
lib.rs

1#![deny(missing_docs)]
2#![allow(unsafe_op_in_unsafe_fn)]
3#![doc = include_str!("../README.md")]
4
5#[cfg(feature = "bufpool")]
6pub mod bufpool;
7
8#[cfg(feature = "error")]
9pub mod error;
10
11#[cfg(feature = "hints")]
12pub mod hints;
13
14#[cfg(feature = "crc32")]
15pub mod crc32;
16
17#[cfg(feature = "mpscq")]
18pub mod mpscq;
19
20#[cfg(feature = "ffile")]
21pub mod ffile;
22
23#[cfg(feature = "fmmap")]
24pub mod fmmap;
25
26pub mod utils;