blob: e04fab6ee69d6fde299ccfb96c63db6e7d10eda4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
|