nushell/crates/nu_plugin_binaryview/Cargo.toml

25 lines
709 B
TOML
Raw Normal View History

2019-12-04 18:51:20 +01:00
[package]
authors = ["The Nu Project Contributors"]
description = "A binary viewer plugin for Nushell"
2020-07-05 22:12:44 +02:00
edition = "2018"
license = "MIT"
2020-07-05 22:12:44 +02:00
name = "nu_plugin_binaryview"
version = "0.29.2"
2019-12-04 18:51:20 +01:00
[lib]
doctest = false
2019-12-04 18:51:20 +01:00
[dependencies]
2021-02-05 21:54:54 +01:00
crossterm = "0.19"
2021-02-05 07:38:04 +01:00
image = { version = "0.22.4", default_features = false, features = ["png_codec", "jpeg"] }
2020-07-05 22:12:44 +02:00
neso = "0.5.0"
nu-errors = { path = "../nu-errors", version = "0.29.2" }
nu-plugin = { path = "../nu-plugin", version = "0.29.2" }
nu-protocol = { path = "../nu-protocol", version = "0.29.2" }
nu-source = { path = "../nu-source", version = "0.29.2" }
nu-ansi-term = { version = "0.29.2", path = "../nu-ansi-term" }
2021-02-05 21:54:54 +01:00
pretty-hex = "0.2.1"
rawkey = "0.1.3"
2019-12-04 18:51:20 +01:00
[build-dependencies]