1 2 3 4 5
#[cfg(feature = "std")] pub(crate) use std::{boxed::Box, string::String, vec::Vec}; #[cfg(not(feature = "std"))] pub(crate) use alloc::{boxed::Box, string::String, vec::Vec};