[package]
edition = "2024"
name = "nu-table"
version = "0.111.0"
authors = ["The Nushell Project Developers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Nushell table printing"
readme = "README.md"
license = "MIT"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-table"
[lib]
name = "nu_table"
path = "src/lib.rs"
bench = false
[[example]]
name = "table_demo"
path = "examples/table_demo.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "constrains"
path = "tests/constrains.rs"
[[test]]
name = "expand"
path = "tests/expand.rs"
[[test]]
name = "style"
path = "tests/style.rs"
[dependencies.fancy-regex]
version = "0.17"
[dependencies.nu-ansi-term]
version = "0.50.3"
[dependencies.nu-color-config]
version = "0.111.0"
[dependencies.nu-engine]
version = "0.111.0"
default-features = false
[dependencies.nu-protocol]
version = "0.111.0"
default-features = false
[dependencies.nu-utils]
version = "0.111.0"
default-features = false
[dependencies.tabled]
version = "0.20"
features = ["ansi"]
default-features = false
[dev-dependencies]
[lints.clippy]
result_large_err = "allow"
unchecked_duration_subtraction = "warn"
used_underscore_binding = "warn"