mirror of
https://github.com/nushell/nushell
synced 2024-12-28 22:13:10 +00:00
61e027b227
There was aparently some debug message on the target commit? Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com>
22 lines
696 B
TOML
22 lines
696 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "Nushell table printing"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-table"
|
|
version = "0.65.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.46.0"
|
|
nu-protocol = { path = "../nu-protocol", version = "0.65.1" }
|
|
regex = "1.4"
|
|
unicode-width = "0.1.8"
|
|
strip-ansi-escapes = "0.1.1"
|
|
ansi-str = { git = "https://github.com/zhiburt/ansi-str", rev = "655cd8125a032286082794690c2cc6dc835345b4" }
|
|
atty = "0.2.14"
|
|
tabled = { git = "https://github.com/zhiburt/tabled", branch = "master", features = ["color"] }
|