summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 035023ea1f892f7e80ca971008eacbf5f0bbbdee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]

name = "prettytable-rs"
version = "0.6.7"
description = "A library for printing pretty formatted tables in terminal"
homepage = "https://github.com/phsym/prettytable-rs"
repository = "https://github.com/phsym/prettytable-rs"
documentation = "https://docs.rs/crate/prettytable-rs/"
readme = "README.md"
authors = [ "Pierre-Henri Symoneaux" ]
keywords = ["tab", "table", "format", "pretty", "print"]
categories = ["command-line-interface"]
license = "BSD-3-Clause"

[badges]
appveyor = { repository = "phsym/prettytable-rs", branch = "master", service = "github" }
travis-ci = { repository = "phsym/prettytable-rs", branch = "master" }
#codecov = { repository = "phsym/prettytable-rs", branch = "master", service = "github" }

[features]
default = ["win_crlf", "csv"]
win_crlf = []

[[bin]]
name = "main"

[lib]
name = "prettytable"

[dependencies]
unicode-width = "^0.1"
term = "^0.4"
lazy_static = "^0.2"
atty = "^0.2"
encode_unicode = "^0.3"
csv = { version = "^0.15", optional = true }