nushell/crates/nu-explore/Cargo.toml
Michel Alexandre Salim 34b3a49cae
[nu-explore] fix Cargo description (#9297)
# Description
The old description ("Nushell table printing") is identical to that of
`nu-table`. Per `explore --help` it is probably more accurate to say
"Nushell table pager".

# User-Facing Changes
N/A

# Tests + Formatting
```
❯ cargo metadata --no-deps | from json | get packages | get 14 | get description
warning: please specify `--format-version` flag explicitly to avoid compatibility problems
Nushell table pager
```

# After Submitting
N/A - change will go out when `0.82.0` is released

Signed-off-by: Michel Alexandre Salim <salimma@fedoraproject.org>
2023-05-27 10:18:39 +02:00

29 lines
908 B
TOML

[package]
authors = ["The Nushell Project Developers"]
description = "Nushell table pager"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-explore"
edition = "2021"
license = "MIT"
name = "nu-explore"
version = "0.80.1"
[lib]
bench = false
[dependencies]
nu-ansi-term = "0.47.0"
nu-protocol = { path = "../nu-protocol", version = "0.80.1" }
nu-parser = { path = "../nu-parser", version = "0.80.1" }
nu-color-config = { path = "../nu-color-config", version = "0.80.1" }
nu-engine = { path = "../nu-engine", version = "0.80.1" }
nu-table = { path = "../nu-table", version = "0.80.1" }
nu-json = { path = "../nu-json", version = "0.80.1" }
nu-utils = { path = "../nu-utils", version = "0.80.1" }
terminal_size = "0.2"
strip-ansi-escapes = "0.1"
crossterm = "0.26"
ratatui = "0.20"
ansi-str = "0.7"
lscolors = { version = "0.14", default-features = false, features = ["nu-ansi-term"] }