[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.9"
[dependencies.console]
optional = true
version = "0.16"
[dependencies.unicode-segmentation]
version = "1"
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.rstest]
version = "0.26"
[[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]
_debug = []
_integration_test = []
custom_styling = ["dep:ansi-str", "dep:console", "tty"]
default = ["tty"]
reexport_crossterm = ["tty"]
tty = ["dep:crossterm"]
[lib]
name = "comfy_table"
path = "src/lib.rs"
[package]
authors = ["Arne Beer <contact@arne.beer>"]
autobenches = false
autobins = false
autoexamples = false
autolib = 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 = "2024"
homepage = "https://github.com/nukesor/comfy-table"
keywords = ["table", "terminal", "unicode"]
license = "MIT"
name = "comfy-table"
readme = "README.md"
repository = "https://github.com/nukesor/comfy-table"
rust-version = "1.85"
version = "7.2.1"
[target."cfg(not(windows))".dependencies.crossterm]
default-features = false
optional = true
version = "0.29"
[target."cfg(windows)".dependencies.crossterm]
default-features = false
features = ["windows"]
optional = true
version = "0.29"
[[test]]
name = "all_tests"
path = "tests/all_tests.rs"