1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A collection of utility code that use unsafe blocks.
//!
//! Code in this collection is not unsafe by nature. They are here to avoid using more nightly
//! Rust features and/or due to lack of 3rd party crates offer a similar functionality.

pub mod bound_queue;
pub mod fake;
pub mod futures;
pub mod no_hash;
pub mod small_str;
pub mod uninit;

#[cfg(feature = "bytes")]
pub mod bytes;