#![feature(
const_maybe_uninit_zeroed,
const_mut_refs,
const_ptr_write,
const_maybe_uninit_as_mut_ptr,
generic_const_exprs
)]
#![allow(incomplete_features)]
#![warn(clippy::all)]
pub mod async_block;
pub mod bit;
pub mod bytes;
mod macros;
pub mod mem;
pub mod ptr;
pub mod shared;
pub mod cell;
pub mod bounded;
pub mod event;
pub use gem_macros::*;