mod r#trait;
#[allow(unused_imports)]
pub use r#trait::*;
#[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::*;