1#![feature( 2 box_vec_non_null, 3 non_null_from_ref, 4 pointer_is_aligned_to, 5 ptr_as_ref_unchecked 6)] 7#![no_std] 8 9pub mod aligned_buffer; 10pub mod slots; 11 12extern crate alloc;