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