]> git.proxmox.com Git - rustc.git/blame - vendor/env_logger-0.6.2/src/fmt/writer/termcolor/mod.rs
New upstream version 1.45.0+dfsg1
[rustc.git] / vendor / env_logger-0.6.2 / src / fmt / writer / termcolor / mod.rs
CommitLineData
e74abb32
XL
1/*
2This internal module contains the style and terminal writing implementation.
3
4Its public API is available when the `termcolor` crate is available.
5The terminal printing is shimmed when the `termcolor` crate is not available.
6*/
7
8#[cfg_attr(feature = "termcolor", path = "extern_impl.rs")]
9#[cfg_attr(not(feature = "termcolor"), path = "shim_impl.rs")]
10mod imp;
11
12pub(in ::fmt) use self::imp::*;