[package]
edition = "2021"
rust-version = "1.63.0"
name = "console-utils"
version = "1.8.3"
authors = ["Nils Wrenger <nils@wrenger.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple CLI Input and Control Utilities"
readme = "README.md"
keywords = [
"console",
"terminal",
"cli",
]
categories = [
"command-line-utilities",
"command-line-interface",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nwrenger/console-utils-rs"
[lib]
name = "console_utils"
path = "src/lib.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[target."cfg(unix)".dependencies.libc]
version = "0.2.177"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_System_Console",
"Win32_System_Threading",
"Win32_UI_Input_KeyboardAndMouse",
]
default-features = false