]> git.proxmox.com Git - rustc.git/blob - vendor/env_logger/src/fmt/humantime/mod.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / env_logger / src / fmt / humantime / mod.rs
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::*;