]> git.proxmox.com Git - rustc.git/blame - vendor/env_logger-0.6.2/src/fmt/humantime/mod.rs
New upstream version 1.45.0+dfsg1
[rustc.git] / vendor / env_logger-0.6.2 / src / fmt / humantime / mod.rs
CommitLineData
e74abb32
XL
1/*
2This internal module contains the timestamp implementation.
3
4Its 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")]
9mod imp;
10
11pub(in ::fmt) use self::imp::*;