cli-table 0.4.9

A crate for printing tables on command line
Documentation
[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"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[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