[badges.maintenance]
status = "actively-developed"
[[bench]]
harness = false
name = "build_large_table"
path = "benches/build_large_table.rs"
[[bench]]
harness = false
name = "build_tables"
path = "benches/build_tables.rs"
[dependencies.ansi-str]
optional = true
version = "0.8"
[dependencies.console]
optional = true
version = "0.15"
[dependencies.strum]
version = "0.26"
[dependencies.strum_macros]
version = "0.26"
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rstest]
version = "0.23"
[[example]]
name = "inner_style"
path = "examples/inner_style.rs"
required-features = ["custom_styling"]
[[example]]
name = "no_tty"
path = "examples/readme_table_no_tty.rs"
[[example]]
name = "readme_table"
path = "examples/readme_table.rs"
[features]
custom_styling = ["ansi-str", "console", "tty"]
debug = []
default = ["tty"]
integration_test = []
reexport_crossterm = ["tty"]
tty = ["crossterm"]
[lib]
name = "comfy_table"
path = "src/lib.rs"
[package]
authors = ["Arne Beer <contact@arne.beer>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "An easy to use library for building beautiful tables with automatic content wrapping"
documentation = "https://docs.rs/comfy-table/"
edition = "2021"
homepage = "https://github.com/nukesor/comfy-table"
keywords = ["terminal", "table", "unicode"]
license = "MIT"
name = "comfy-table"
readme = "README.md"
repository = "https://github.com/nukesor/comfy-table"
rust-version = "1.64"
version = "7.1.3"
[target."cfg(not(windows))".dependencies.crossterm]
default-features = false
optional = true
version = "0.28"
[target."cfg(windows)".dependencies.crossterm]
default-features = false
features = ["windows"]
optional = true
version = "0.28"
[[test]]
name = "all_tests"
path = "tests/all_tests.rs"