summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: a3d0939f3aa15db2898815cdadb375ef9ed5c0a7 (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
37
38
39
[package]

name = "prettytable-rs"
version = "0.8.0"
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"
edition = "2018"

[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"
edition = "2018"
path = "src/main.rs"

[lib]
name = "prettytable"

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