gemstone/
lib.rs

1#![feature(
2    const_maybe_uninit_zeroed,     // mem::zero
3    const_mut_refs,                // mem::read
4    const_ptr_write,               // mem::write
5    const_maybe_uninit_as_mut_ptr, // mem::ones
6    generic_const_exprs,           // mem::MemValue
7    const_size_of_val              // mem::make_zero
8)]
9#![allow(incomplete_features)]
10#![warn(clippy::all)]
11
12pub mod async_block;
13pub mod bit;
14pub mod bounded;
15pub mod bytes;
16pub mod cell;
17pub mod event;
18mod macros;
19pub mod mem;
20pub mod ptr;
21pub mod shared;