1 2 3 4 5 6 7 8 9 10 11 12 13
#[cfg(feature = "thin-vec")] mod thin_vec; #[cfg(not(feature = "thin-vec"))] mod std; #[cfg(feature = "thin-vec")] #[allow(unused_imports)] pub use thin_vec::*; #[cfg(not(feature = "thin-vec"))] #[allow(unused_imports)] pub use std::*;