nushell/crates/nu_plugin_textview/Cargo.toml

28 lines
799 B
TOML
Raw Normal View History

[package]
name = "nu_plugin_textview"
2020-06-14 23:54:30 +02:00
version = "0.15.1"
authors = ["The Nu Project Contributors"]
edition = "2018"
description = "Text viewer plugin for Nushell"
license = "MIT"
[lib]
doctest = false
[dependencies]
2020-06-14 23:54:30 +02:00
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" }
2020-05-30 22:54:47 +02:00
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]
2020-06-14 23:54:30 +02:00
nu-build = { version = "0.15.1", path = "../nu-build" }