nushell/crates/nu-explore/Cargo.toml
WindSoilder 503052b669
using ratatui instead of tui (#8952)
# Description

Refer to https://github.com/fdehau/tui-rs/issues/654, I found that tui
maybe un-maintained, instead, I'd suggest to use an actively fork
https://github.com/tui-rs-revival/ratatui

cc: @zhiburt 

# User-Facing Changes
NaN
2023-04-26 01:07:23 +02:00

29 lines
919 B
TOML

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