[package]
edition = "2024"
name = "tabulator"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Grid-oriented tabulation with justification and anchors"
homepage = "https://github.com/tesujimath/tabulator"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tesujimath/tabulator"
[features]
bin = [
"clap",
"json",
"psv",
]
clap = ["dep:clap"]
json = [
"dep:serde",
"dep:serde_json",
]
num-bigint = ["dep:num-bigint"]
psv = []
rust_decimal = ["dep:rust_decimal"]
[lib]
name = "tabulator"
path = "src/lib.rs"
[[bin]]
name = "tabulator"
path = "src/main.rs"
required-features = ["bin"]
[[test]]
name = "nesting"
path = "tests/nesting.rs"
[[test]]
name = "spacing"
path = "tests/spacing.rs"
[dependencies.clap]
version = "4.5.42"
features = ["derive"]
optional = true
[dependencies.itertools]
version = "0.14.0"
[dependencies.joinery]
version = "3.1.0"
[dependencies.lazy_format]
version = "2.0.3"
[dependencies.num-bigint]
version = "0.4.6"
optional = true
[dependencies.rust_decimal]
version = "1.38.0"
optional = true
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1.0.145"
optional = true
[dependencies.test-case]
version = "3.3.1"
[dependencies.unicode-width]
version = "0.2.1"
[dev-dependencies.rust_decimal_macros]
version = "1.38.0"