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