console 0.16.3

A terminal and console abstraction for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.71"
name = "console"
version = "0.16.3"
build = false
include = [
    "CHANGELOG.md",
    "Cargo.toml",
    "LICENSE",
    "README.md",
    "src/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal and console abstraction for Rust"
homepage = "https://github.com/console-rs/console"
documentation = "https://docs.rs/console"
readme = "README.md"
keywords = [
    "cli",
    "terminal",
    "colors",
    "console",
    "ansi",
]
license = "MIT"
repository = "https://github.com/console-rs/console"

[features]
alloc = []
ansi-parsing = []
default = [
    "unicode-width",
    "ansi-parsing",
    "std",
]
std = [
    "dep:libc",
    "alloc",
]
windows-console-colors = ["ansi-parsing"]

[lib]
name = "console"
path = "src/lib.rs"

[dependencies.libc]
version = "0.2.99"
optional = true

[dependencies.unicode-width]
version = "0.2"
optional = true

[dev-dependencies.proptest]
version = "1.0.0"
features = [
    "std",
    "bit-set",
    "break-dead-code",
]
default-features = false

[dev-dependencies.regex]
version = "1.4.2"

[target."cfg(windows)".dependencies.encode_unicode]
version = "1"

[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
    "Win32_Foundation",
    "Win32_System_Console",
    "Win32_Storage_FileSystem",
    "Win32_UI_Input_KeyboardAndMouse",
]