[[bin]]
name = "csvpretty"
path = "src/main.rs"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.csv]
version = "1.4"
[dependencies.owo-colors]
version = "4.2"
[dependencies.terminal-colorsaurus]
version = "1.0"
[dependencies.terminal_size]
version = "0.4"
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.insta]
version = "1.43"
[dev-dependencies.portable-pty]
version = "0.9"
[package]
authors = ["Luke Frisken <l.frisken@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "text-processing"]
description = "A command-line tool that formats CSV input into tables with Unicode box-drawing characters"
edition = "2024"
keywords = ["csv", "cli", "table", "formatting", "pretty-print"]
license = "MIT"
name = "csvpretty"
readme = "README.md"
repository = "https://github.com/kellpossible/csvpretty"
version = "0.1.0"
[[test]]
name = "line_numbers_tests"
path = "tests/line_numbers_tests.rs"
[[test]]
name = "terminal_width_tests"
path = "tests/terminal_width_tests.rs"
[[test]]
name = "wrap_mode_tests"
path = "tests/wrap_mode_tests.rs"