[package] name = "stybulate" version = "1.1.2" authors = ["Guillaume Comte ", "João Vitor S. Anjos "] 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"]