2020-06-20 05:41:53 +02:00
|
|
|
[package]
|
|
|
|
authors = ["The Nu Project Contributors"]
|
|
|
|
description = "Nushell table printing"
|
2022-01-20 14:13:45 +01:00
|
|
|
edition = "2021"
|
2021-09-10 04:27:12 +02:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu-table"
|
2022-02-07 20:54:06 +01:00
|
|
|
version = "0.59.0"
|
2020-06-20 05:41:53 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
|
|
name = "table"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-02-07 20:54:06 +01:00
|
|
|
# nu-ansi-term = { path = "../nu-ansi-term", version = "0.59.0" }
|
2022-01-02 23:36:32 +01:00
|
|
|
nu-ansi-term = "0.42.0"
|
2022-02-07 20:54:06 +01:00
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.59.0" }
|
2021-09-10 04:27:12 +02:00
|
|
|
regex = "1.4"
|
|
|
|
unicode-width = "0.1.8"
|
2021-11-15 21:09:17 +01:00
|
|
|
strip-ansi-escapes = "0.1.1"
|
2022-01-23 00:36:40 +01:00
|
|
|
ansi-cut = "0.2.0"
|
2021-12-09 17:00:26 +01:00
|
|
|
atty = "0.2.14"
|