2020-06-20 05:41:53 +02:00
|
|
|
[package]
|
2022-03-13 19:30:27 +01:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2020-06-20 05:41:53 +02:00
|
|
|
description = "Nushell table printing"
|
2022-08-14 14:21:20 +02:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-table"
|
2022-01-20 14:13:45 +01:00
|
|
|
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"
|
2020-06-20 05:41:53 +02:00
|
|
|
|
2023-02-12 23:22:00 +01:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2024-08-28 23:37:17 +02:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2020-06-20 05:41:53 +02:00
|
|
|
[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" }
|
2024-03-07 23:40:31 +01:00
|
|
|
nu-ansi-term = { workspace = true }
|
|
|
|
once_cell = { workspace = true }
|
|
|
|
fancy-regex = { workspace = true }
|
2024-08-24 00:35:42 +02:00
|
|
|
tabled = { workspace = true, features = ["ansi"], default-features = false }
|
2024-10-11 20:36:09 +02:00
|
|
|
terminal_size = { workspace = true }
|
2022-12-20 00:53:17 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-10-20 23:12:41 +02:00
|
|
|
# nu-test-support = { path="../nu-test-support", version = "0.99.2" }
|