aboutsummaryrefslogtreecommitdiff
path: root/vendor/anstyle-wincon/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/anstyle-wincon/src/lib.rs')
-rw-r--r--vendor/anstyle-wincon/src/lib.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/anstyle-wincon/src/lib.rs b/vendor/anstyle-wincon/src/lib.rs
new file mode 100644
index 0000000..e04fab6
--- /dev/null
+++ b/vendor/anstyle-wincon/src/lib.rs
@@ -0,0 +1,18 @@
+//! Styling legacy Windows terminals
+//!
+//! See [`WinconStream`]
+//!
+//! This fills a similar role as [`winapi-util`](https://crates.io/crates/winapi-util) does for
+//! [`termcolor`](https://crates.io/crates/termcolor) with the differences
+//! - Uses `windows-sys` rather than `winapi`
+//! - Uses [`anstyle`](https://crates.io/crates/termcolor) rather than defining its own types
+//! - More focused, smaller
+
+#![cfg_attr(docsrs, feature(doc_auto_cfg))]
+
+pub mod ansi;
+mod stream;
+#[cfg(windows)]
+pub mod windows;
+
+pub use stream::WinconStream;