summaryrefslogtreecommitdiffstats
path: root/vendor/env_logger/src/fmt/writer/termcolor/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/env_logger/src/fmt/writer/termcolor/mod.rs')
-rw-r--r--vendor/env_logger/src/fmt/writer/termcolor/mod.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/env_logger/src/fmt/writer/termcolor/mod.rs b/vendor/env_logger/src/fmt/writer/termcolor/mod.rs
new file mode 100644
index 000000000..f3e6768cd
--- /dev/null
+++ b/vendor/env_logger/src/fmt/writer/termcolor/mod.rs
@@ -0,0 +1,12 @@
+/*
+This internal module contains the style and terminal writing implementation.
+
+Its public API is available when the `termcolor` crate is available.
+The terminal printing is shimmed when the `termcolor` crate is not available.
+*/
+
+#[cfg_attr(feature = "termcolor", path = "extern_impl.rs")]
+#[cfg_attr(not(feature = "termcolor"), path = "shim_impl.rs")]
+mod imp;
+
+pub(in crate::fmt) use self::imp::*;