[package]
edition = "2021"
rust-version = "1.70"
name = "uutils_term_grid"
version = "0.8.0"
authors = [
"uutils developers",
"Benjamin Sago <ogham@bsago.me>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for formatting strings into a grid layout. Fork of term_grid."
documentation = "https://docs.rs/uutils_term_grid/"
readme = "README.md"
keywords = [
"terminal",
"grid",
"layout",
"format",
"display",
]
categories = [
"command-line-interface",
"text-processing",
]
license = "MIT"
repository = "https://github.com/uutils/uutils-term-grid"
[lib]
name = "term_grid"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "big"
path = "examples/big.rs"
[[example]]
name = "tabs"
path = "examples/tabs.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[[bench]]
name = "bench_grid"
path = "benches/bench-grid.rs"
harness = false
[dependencies.ansi-width]
version = "0.1.0"
[dev-dependencies.divan]
version = "4.3.0"
package = "codspeed-divan-compat"