gemstone 0.4.1

collection of utilities
Documentation
#![feature(
    const_maybe_uninit_zeroed,
    const_mut_refs,
    const_ptr_write,
    const_maybe_uninit_as_mut_ptr,
    generic_const_exprs,
    const_size_of_val
)]
#![allow(incomplete_features)]
#![warn(clippy::all)]

pub mod async_block;
pub mod bit;
pub mod bounded;
pub mod bytes;
pub mod cell;
pub mod event;
mod macros;
pub mod mem;
pub mod ptr;
pub mod shared;