-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
30 lines (26 loc) · 909 Bytes
/
Cargo.toml
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
[package]
name = "stybulate"
version = "1.1.2"
authors = ["Guillaume Comte <guillaume.comte10@gmail.com>", "João Vitor S. Anjos <jvanjos@protonmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/guigui64/stybulate"
homepage = "https://github.com/guigui64/stybulate"
description = "Tabulate with Style"
categories = ["command-line-interface"]
exclude = ["/.github/", "/scripts/"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["ansi_term_style"]
ansi_term_style = ["ansi_term"]
cli = ["anyhow", "structopt"]
[dependencies]
strip-ansi-escapes = "0.1"
unicode-width = "0.1"
ansi_term = { version = "0.12", optional = true }
anyhow = { version = "1.0", optional = true }
structopt = { version = "0.3", optional = true }
[[bin]]
name = "stybulate"
required-features = ["cli"]