]> git.proxmox.com Git - rustc.git/blob - vendor/env_logger/src/fmt/writer/termcolor/mod.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / vendor / env_logger / src / fmt / writer / termcolor / mod.rs
1 /*
2 This internal module contains the style and terminal writing implementation.
3
4 Its public API is available when the `termcolor` crate is available.
5 The 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")]
10 mod imp;
11
12 pub(in crate::fmt) use self::imp::*;