[package]
name = "cli-table"
version = "0.4.9"
authors = ["Devashish Dixit <devashishdxt@gmail.com>"]
license = "MIT/Apache-2.0"
description = "A crate for printing tables on command line"
homepage = "https://github.com/devashishdxt/cli-table"
repository = "https://github.com/devashishdxt/cli-table"
categories = ["command-line-interface"]
keywords = ["table", "cli", "format"]
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-*"]
edition = "2018"
[lib]
name = "cli_table"
path = "src/lib.rs"
[dependencies]
cli-table-derive = { version = "0.4.6", path = "../cli-table-derive", optional = true }
csv = { version = "1.3.0", optional = true }
termcolor = "1.4.1"
unicode-width = "0.1.13"
[features]
default = ["csv", "derive"]
derive = ["cli-table-derive", "title"]
doc = []
title = []
[package.metadata.docs.rs]
all-features = true