2021-05-01 16:12:25 +00:00
|
|
|
[package]
|
2022-03-13 18:30:27 +00:00
|
|
|
authors = ["Andrei Volnin <wolandr@gmail.com>", "The Nushell Project Developers"]
|
2021-05-01 16:12:25 +00:00
|
|
|
description = "Pretty hex dump of bytes slice in the common style."
|
2022-01-20 13:13:45 +00:00
|
|
|
edition = "2021"
|
2021-12-24 07:22:11 +00:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu-pretty-hex"
|
2022-05-07 20:38:12 +00:00
|
|
|
version = "0.62.1"
|
2021-05-01 16:12:25 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
name = "nu_pretty_hex"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_pretty_hex"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-27 03:57:31 +00:00
|
|
|
nu-ansi-term = "0.45.1"
|
2021-05-01 16:12:25 +00:00
|
|
|
rand = "0.8.3"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-14 06:32:21 +00:00
|
|
|
heapless = { version = "0.7.8", default-features = false }
|
2021-05-01 16:12:25 +00:00
|
|
|
|
|
|
|
# [features]
|
|
|
|
# default = ["alloc"]
|
|
|
|
# alloc = []
|