1
 2
 3
 4
 5
 6
 7
 8
 9
10
pub mod std;

#[cfg(feature = "fast_fmt")]
pub mod fast_fmt;

#[cfg(not(feature = "fast_fmt"))]
pub use self::std::*;

#[cfg(feature = "fast_fmt")]
pub use self::fast_fmt::*;