xitca_unsafe_collection/lib.rs
1//! A collection of utility code that use unsafe blocks.
2//!
3//! Code in this collection is not unsafe by nature. They are here to avoid using more nightly
4//! Rust features and/or due to lack of 3rd party crates offer a similar functionality.
5
6pub mod bound_queue;
7pub mod fake;
8pub mod futures;
9pub mod no_hash;
10pub mod small_str;
11pub mod uninit;
12
13#[cfg(feature = "bytes")]
14pub mod bytes;