1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![no_std]
#![feature(thread_local)]
#![warn(clippy::all)]

mod alloc;
pub mod backend;
mod bitset;
mod huge;
mod reserve;
mod subhuge;

#[doc(hidden)]
pub mod __internal;

pub use self::alloc::*;
pub use self::backend::Backend;