2020-06-20 03:41:53 +00:00
|
|
|
[package]
|
2022-03-13 18:30:27 +00:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2020-06-20 03:41:53 +00:00
|
|
|
description = "Nushell table printing"
|
2022-08-14 12:21:20 +00:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-table"
|
2022-01-20 13:13:45 +00:00
|
|
|
edition = "2021"
|
2021-09-10 02:27:12 +00:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu-table"
|
2023-04-25 23:05:23 +00:00
|
|
|
version = "0.79.1"
|
2020-06-20 03:41:53 +00:00
|
|
|
|
2023-02-12 22:22:00 +00:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2020-06-20 03:41:53 +00:00
|
|
|
[dependencies]
|
2023-04-25 23:05:23 +00:00
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.79.1" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.79.1" }
|
|
|
|
nu-engine = { path = "../nu-engine", version = "0.79.1" }
|
|
|
|
nu-color-config = { path = "../nu-color-config", version = "0.79.1" }
|
2023-03-14 18:46:42 +00:00
|
|
|
|
2023-03-13 22:38:18 +00:00
|
|
|
nu-ansi-term = "0.47.0"
|
2023-03-14 18:46:42 +00:00
|
|
|
|
2023-04-26 18:56:10 +00:00
|
|
|
tabled = { version = "0.12.0", features = ["color"], default-features = false }
|
2022-12-19 23:53:17 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-25 23:05:23 +00:00
|
|
|
# nu-test-support = { path="../nu-test-support", version = "0.79.1" }
|