4 releases

0.2.1 Dec 11, 2022
0.1.2 Jan 19, 2022
0.1.1 Dec 6, 2021
0.1.0 Dec 4, 2021

#176 in Command-line interface

Download history 8313/week @ 2023-12-08 8483/week @ 2023-12-15 4935/week @ 2023-12-22 7532/week @ 2023-12-29 9167/week @ 2024-01-05 13187/week @ 2024-01-12 13947/week @ 2024-01-19 11324/week @ 2024-01-26 14963/week @ 2024-02-02 10729/week @ 2024-02-09 11217/week @ 2024-02-16 12721/week @ 2024-02-23 14430/week @ 2024-03-01 13359/week @ 2024-03-08 13447/week @ 2024-03-15 10600/week @ 2024-03-22

54,793 downloads per month
Used in 27 crates (18 directly)

MIT license

10KB

enable-ansi-support: Enable ANSI escape code support on Windows 10

enable-ansi-support on crates.io Documentation (latest release) Documentation (main) License License

About

This crate provides one function, enable_ansi_support, which allows ANSI escape codes to work on Windows 10 and above. Call enable_ansi_support once, early on in main(), to enable ANSI escape codes generated by crates like ansi_term or owo-colors to work on Windows just like they do on Unix platforms.

On non-Windows platforms, enable_ansi_support is a no-op.

Example

fn main() {
    match enable_ansi_support::enable_ansi_support() {
        Ok(()) => {
            // ANSI escape codes were successfully enabled, or this is a non-Windows platform.
            // Use your terminal color library of choice here.
            println!("\x1b[31mHello, world\x1b[0m");
        }
        Err(_) => {
            // The operation was unsuccessful, typically because it's running on an older
            // version of Windows. The program may choose to disable ANSI color code output in
            // this case.
        }
    }
}

Minimum supported Rust version

The minimum supported Rust version (MSRV) is 1.49. The MSRV will be updated sparingly, and any update to it will be considered a breaking change.

License and credits

This project is available under the terms of the MIT license. It is a derivative of ansi_term's enable_ansi_support (as of this snapshot) with minor modifications. The upstream code is used under the terms of the MIT license:

Copyright (c) 2014 Benjamin Sago

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependencies

~0–13MB
~96K SLoC