[package] name = "ascii_table" version = "4.0.4" authors = ["Gerrit Viljoen "] license = "MIT" edition = "2021" description = "Print ASCII tables to the terminal" repository = "https://gitlab.com/d5b4b2/ascii-table" homepage = "https://gitlab.com/d5b4b2/ascii-table" documentation = "https://docs.rs/ascii_table" readme = "readme.md" categories = ["command-line-interface"] keywords = ["ascii", "table"] [dependencies] lazy_static = { version = "1", optional = true } regex = { version = "1", optional = true } termion = { version = "4", optional = true } unicode-width = { version = "0.1", optional = true } [dev-dependencies] colorful = "0.3" [features] auto_table_width = ["termion"] color_codes = ["lazy_static", "regex"] wide_characters = ["unicode-width"] [package.metadata.cargo-all-features] allowlist = ["auto_table_width", "color_codes", "wide_characters"]