forked from extern/nushell
Reverts nushell/nushell#9796 This is just draft since we're seeing some issues with the latest fixes to table drawing that just landed with #9796. We're hoping to get these fixed, but if we're not able to fix them before the next release, we'll need to revert (hence this PR, just in case we need it).
23 lines
718 B
TOML
23 lines
718 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "Nushell table printing"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-table"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-table"
|
|
version = "0.83.2"
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
nu-protocol = { path = "../nu-protocol", version = "0.83.2" }
|
|
nu-utils = { path = "../nu-utils", version = "0.83.2" }
|
|
nu-engine = { path = "../nu-engine", version = "0.83.2" }
|
|
nu-color-config = { path = "../nu-color-config", version = "0.83.2" }
|
|
nu-ansi-term = "0.49.0"
|
|
tabled = { version = "0.12.2", features = ["color"], default-features = false }
|
|
|
|
[dev-dependencies]
|
|
# nu-test-support = { path="../nu-test-support", version = "0.83.2" }
|