nushell/crates/nu-table/Cargo.toml
Maxim Zhiburt ac48f5a318
Fix coloring when string has spaces (#5425)
* Replace ansi-cut with ansi-str

There's no issues with it we just need to use it later.

Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com>

* Fix color losing in string spliting into Sublines

Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com>
2022-05-03 09:48:43 -05:00

22 lines
510 B
TOML

[package]
authors = ["The Nushell Project Developers"]
description = "Nushell table printing"
edition = "2021"
license = "MIT"
name = "nu-table"
version = "0.61.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "table"
path = "src/main.rs"
[dependencies]
nu-ansi-term = "0.45.1"
nu-protocol = { path = "../nu-protocol", version = "0.61.1" }
regex = "1.4"
unicode-width = "0.1.8"
strip-ansi-escapes = "0.1.1"
ansi-str = "0.1.1"
atty = "0.2.14"