[package] name = "concolor-control" version = "0.0.7" license = "MIT OR Apache-2.0" description = "Control console coloring across all dependencies" repository = "https://github.com/rust-cli/concolor" categories = ["command-line-interface"] keywords = ["cli", "color", "no-std", "terminal", "ansi"] edition = "2018" [features] auto = ["interactive", "clicolor", "no_color", "term", "windows"] std = [] core = ["std", "bitflags"] # Cross-crate API control is not guaranteed until our 1.0 release api_unstable = ["core"] interactive = ["core", "atty"] clicolor = ["core", "concolor-query"] no_color = ["core", "concolor-query"] term = ["core", "concolor-query"] windows = ["core", "concolor-query/windows"] [package.metadata.docs.rs] features = ["auto", "api_unstable"] [dependencies] concolor-query = { version = "^0.0.4", path = "../query", optional = true } bitflags = { version = "1", optional = true } atty = { version = "0.2.14", optional = true }