[package] name = "console" description = "A terminal and console abstraction for Rust" version = "0.15.11" keywords = ["cli", "terminal", "colors", "console", "ansi"] authors = ["Armin Ronacher "] license = "MIT" edition = "2021" homepage = "https://github.com/console-rs/console" repository = "https://github.com/console-rs/console" documentation = "https://docs.rs/console" readme = "README.md" rust-version = "1.66" [features] default = ["unicode-width", "ansi-parsing"] windows-console-colors = ["ansi-parsing"] ansi-parsing = [] [dependencies] libc = "0.2.99" once_cell = "1.8" unicode-width = { version = "0.2", optional = true } # [target.'cfg(windows)'.dependencies] # encode_unicode = "1" # [target.'cfg(windows)'.dependencies.windows-sys] # version = "0.59" # features = [ # "Win32_Foundation", # "Win32_System_Console", # "Win32_Storage_FileSystem", # "Win32_UI_Input_KeyboardAndMouse", # ] # [dev-dependencies] # # Pick a setup for proptest that works with wasi # proptest = { version = "1.0.0", default-features = false, features = [ # "std", # "bit-set", # "break-dead-code", # ] } # regex = "1.4.2" ## These are currently disabled. If you want to play around with the benchmarks ## uncommit this. #criterion = "0.3.5" #[[bench]] #name = "ansi_parser" #harness = false