[package]
name = "consolex"
version = "0.1.0"
edition = "2024"
description = "Windows console utilities: probe, create, and release the console of the current process, plus a small CLI."
license = "MIT"
authors = ["ahaoboy"]
repository = "https://github.com/ahaoboy/consolex"
[features]
default = ["cli"]
cli = ["dep:clap"]
[dependencies]
thiserror = "2"
clap = { version = "4", features = ["derive"], optional = true }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console"] }
[[bin]]
name = "consolex"
path = "src/main.rs"
required-features = ["cli"]