fmt_utils/
lib.rs

1pub mod std;
2
3#[cfg(feature = "fast_fmt")]
4pub mod fast_fmt;
5
6#[cfg(not(feature = "fast_fmt"))]
7pub use self::std::*;
8
9#[cfg(feature = "fast_fmt")]
10pub use self::fast_fmt::*;