nushell/crates/nu_plugin_binaryview/Cargo.toml

26 lines
738 B
TOML
Raw Normal View History

2019-12-04 18:51:20 +01:00
[package]
name = "nu_plugin_binaryview"
2020-04-21 07:01:03 +02:00
version = "0.13.0"
authors = ["The Nu Project Contributors"]
2019-12-04 18:51:20 +01:00
edition = "2018"
description = "A binary viewer plugin for Nushell"
license = "MIT"
2019-12-04 18:51:20 +01:00
[lib]
doctest = false
2019-12-04 18:51:20 +01:00
[dependencies]
ansi_term = "0.12.1"
2020-04-09 00:28:20 +02:00
crossterm = { version = "0.17.2" }
2020-04-21 07:01:03 +02:00
nu-plugin = { path = "../nu-plugin", version = "0.13.0" }
nu-protocol = { path = "../nu-protocol", version = "0.13.0" }
nu-source = { path = "../nu-source", version = "0.13.0" }
nu-errors = { path = "../nu-errors", version = "0.13.0" }
2019-12-04 18:51:20 +01:00
pretty-hex = "0.1.1"
image = { version = "0.22.4", default_features = false, features = ["png_codec", "jpeg"] }
2019-12-04 18:51:20 +01:00
rawkey = "0.1.2"
neso = "0.5.0"
[build-dependencies]
2020-04-21 07:01:03 +02:00
nu-build = { version = "0.13.0", path = "../nu-build" }