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 = "error")]
6pub mod error;
7
8#[cfg(feature = "hints")]
9pub mod hints;
10
11#[cfg(feature = "ffile")]
12pub mod ffile;
13
14#[cfg(feature = "fmmap")]
15pub mod fmmap;