[package]
edition = "2021"
name = "tabbs"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A command line tool for displaying delimiter-separated data as a table in the terminal"
homepage = "https://github.com/ztroop/tabbs"
readme = "README.md"
keywords = [
"cli",
"table",
"csv",
"terminal",
"formatting",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/ztroop/tabbs"
[[bin]]
name = "tabbs"
path = "src/main.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.colored]
version = "2.0"
[dev-dependencies.tempfile]
version = "3"