gemstone 0.4.5

collection of utilities
Documentation
#![feature(
    const_maybe_uninit_zeroed,     // mem::zero
    const_mut_refs,                // mem::read
    const_ptr_write,               // mem::write
    const_maybe_uninit_as_mut_ptr, // mem::ones
    generic_const_exprs,           // mem::MemValue
    const_size_of_val              // mem::make_zero
)]
#![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;