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-02-07 23:26:03 +01:00
|
|
|
version = "0.90.2"
|
2020-06-20 05:41:53 +02:00
|
|
|
|
2023-02-12 23:22:00 +01:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2020-06-20 05:41:53 +02:00
|
|
|
[dependencies]
|
2024-02-07 23:26:03 +01:00
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.90.2" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.90.2" }
|
|
|
|
nu-engine = { path = "../nu-engine", version = "0.90.2" }
|
|
|
|
nu-color-config = { path = "../nu-color-config", version = "0.90.2" }
|
2024-01-25 05:57:15 +01:00
|
|
|
nu-ansi-term = "0.50.0"
|
2023-09-13 14:47:53 +02:00
|
|
|
once_cell = "1.18"
|
2024-02-19 02:54:37 +01:00
|
|
|
fancy-regex = "0.13"
|
2023-08-04 20:50:47 +02:00
|
|
|
tabled = { version = "0.14.0", features = ["color"], default-features = false }
|
2022-12-20 00:53:17 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-07 23:26:03 +01:00
|
|
|
# nu-test-support = { path="../nu-test-support", version = "0.90.2" }
|