nushell/crates/nu-table/Cargo.toml

25 lines
796 B
TOML
Raw Normal View History

[package]
authors = ["The Nushell Project Developers"]
description = "Nushell table printing"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-table"
edition = "2021"
2021-09-10 04:27:12 +02:00
license = "MIT"
name = "nu-table"
2024-06-05 00:52:40 +02:00
version = "0.94.3"
[lib]
bench = false
[dependencies]
2024-06-05 00:52:40 +02:00
nu-protocol = { path = "../nu-protocol", version = "0.94.3" }
nu-utils = { path = "../nu-utils", version = "0.94.3" }
nu-engine = { path = "../nu-engine", version = "0.94.3" }
nu-color-config = { path = "../nu-color-config", version = "0.94.3" }
nu-ansi-term = { workspace = true }
once_cell = { workspace = true }
fancy-regex = { workspace = true }
tabled = { workspace = true, features = ["color"], default-features = false }
[dev-dependencies]
2024-06-05 00:52:40 +02:00
# nu-test-support = { path="../nu-test-support", version = "0.94.3" }