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"
|
2022-10-20 07:04:10 +02:00
|
|
|
version = "0.70.1"
|
2020-06-20 05:41:53 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-06-03 21:38:54 +02:00
|
|
|
nu-ansi-term = "0.46.0"
|
2022-10-20 07:04:10 +02:00
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.70.1" }
|
2022-11-04 19:49:45 +01:00
|
|
|
nu-utils = { path = "../nu-utils", version = "0.70.1" }
|
2021-12-09 17:00:26 +01:00
|
|
|
atty = "0.2.14"
|
2022-10-20 14:52:15 +02:00
|
|
|
tabled = { version = "0.10.0", features = ["color"], default-features = false }
|
|
|
|
json_to_table = { version = "0.2.0", features = ["color"] }
|
2022-10-19 00:44:04 +02:00
|
|
|
serde_json = "1"
|