nushell/crates/nu_plugin_binaryview/Cargo.toml

25 lines
724 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"
2021-06-23 09:57:41 +02:00
version = "0.33.1"
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-06-22 07:22:33 +02: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"
2021-06-23 09:57:41 +02:00
nu-errors = { path="../nu-errors", version="0.33.1" }
nu-plugin = { path="../nu-plugin", version="0.33.1" }
nu-protocol = { path="../nu-protocol", version="0.33.1" }
nu-source = { path="../nu-source", version="0.33.1" }
nu-ansi-term = { version="0.33.1", path="../nu-ansi-term" }
nu-pretty-hex = { version="0.33.1", path="../nu-pretty-hex" }
rawkey = "0.1.3"
2019-12-04 18:51:20 +01:00
[build-dependencies]