Unstable API for ANSI/VT100 escape codes.
# Cargo.toml
[dependencies]
maulingmonkey-console-escape-codes.git = "https://github.com/MaulingMonkey/console-escape-codes"
maulingmonkey-console-winapi-wrappers.git = "https://github.com/MaulingMonkey/console-winapi-wrappers"
// src\main.rs
use maulingmonkey_console_escape_codes::*;
use maulingmonkey_console_winapi_wrappers::*;
fn main() {
#[cfg(windows)] let _ = change_console_mode(&mut std::io::stdout(), |m| m | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
println!(
"Hello, {green}{bold}world{reset}!",
green = vt100::sgr_foreground_256(2),
bold = vt100::sgr_bold(true),
reset = vt100::sgr_default(),
);
}
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.