1#![warn(unsafe_op_in_unsafe_fn)] 2#![allow(unused_unsafe)] 3#![doc = include_str!("crate-doc.md")] 4 5mod boxed; 6mod unboxed; 7mod util; 8mod value; 9 10pub use boxed::*; 11pub use unboxed::*; 12pub use value::*;