nushell/crates/nu-table/Cargo.toml

27 lines
824 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-10-20 23:12:41 +02:00
version = "0.99.2"
[lib]
bench = false
[lints]
workspace = true
[dependencies]
2024-10-20 23:12:41 +02:00
nu-protocol = { path = "../nu-protocol", version = "0.99.2" }
nu-utils = { path = "../nu-utils", version = "0.99.2" }
nu-engine = { path = "../nu-engine", version = "0.99.2" }
nu-color-config = { path = "../nu-color-config", version = "0.99.2" }
nu-ansi-term = { workspace = true }
fancy-regex = { workspace = true }
tabled = { workspace = true, features = ["ansi"], default-features = false }
2024-10-11 20:36:09 +02:00
terminal_size = { workspace = true }
[dev-dependencies]
2024-10-20 23:12:41 +02:00
# nu-test-support = { path="../nu-test-support", version = "0.99.2" }