mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
6914099e28
* WIP - Modified textview to use bat crate * use input_from_bytes_with_name instead of input_file * removed old paging added prettyprint on else blocks duplicated too much code hard coded defaults Co-authored-by: Darren Schroeder <fdncred@hotmail.com>
28 lines
800 B
TOML
28 lines
800 B
TOML
[package]
|
|
name = "nu_plugin_textview"
|
|
version = "0.15.1"
|
|
authors = ["The Nu Project Contributors"]
|
|
edition = "2018"
|
|
description = "Text viewer plugin for Nushell"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
nu-plugin = { path = "../nu-plugin", version = "0.15.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.15.1" }
|
|
nu-source = { path = "../nu-source", version = "0.15.1" }
|
|
nu-errors = { path = "../nu-errors", version = "0.15.1" }
|
|
#nu-cli = { path = "../nu-cli", version = "0.15.1" }
|
|
|
|
crossterm = "0.17.5"
|
|
syntect = { version = "4.2", default-features = false, features = ["default-fancy"]}
|
|
ansi_term = "0.12.1"
|
|
url = "2.1.1"
|
|
bat = "0.15.4"
|
|
textwrap = {version = "0.11.0", features = ["term_size"]}
|
|
|
|
[build-dependencies]
|
|
nu-build = { version = "0.15.1", path = "../nu-build" }
|