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 = "ack")]
6pub mod ack;
7
8#[cfg(feature = "bufpool")]
9pub mod bufpool;
10
11#[cfg(feature = "error")]
12pub mod error;
13
14#[cfg(feature = "hints")]
15pub mod hints;
16
17#[cfg(feature = "crc32")]
18pub mod crc32;
19
20#[cfg(feature = "mpscq")]
21pub mod mpscq;
22
23#[cfg(feature = "ffile")]
24pub mod ffile;
25
26#[cfg(feature = "fmmap")]
27pub mod fmmap;
28
29#[cfg(feature = "wpipe")]
30pub mod wpipe;
31
32pub mod utils;