1#![no_std]
2#![feature(thread_local)]
3#![warn(clippy::all)]
4
5mod alloc;
6pub mod backend;
7mod bitset;
8mod huge;
9mod reserve;
10mod subhuge;
11
12#[doc(hidden)]
13pub mod __internal;
14
15pub use self::alloc::*;
16pub use self::backend::Backend;