1 /* 2 This internal module contains the timestamp implementation. 3 4 Its public API is available when the `humantime` crate is available. 5 */ 6 7 #[cfg_attr(feature = "humantime", path = "extern_impl.rs")] 8 #[cfg_attr(not(feature = "humantime"), path = "shim_impl.rs")] 9 mod imp; 10 11 pub(in crate::fmt) use self::imp::*; 12