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-08-14 12:21:20 +00:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-pretty-hex"
|
2022-01-20 13:13:45 +00:00
|
|
|
edition = "2021"
|
2021-12-24 07:22:11 +00:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu-pretty-hex"
|
2023-01-31 22:55:29 +00:00
|
|
|
version = "0.75.1"
|
2021-05-01 16:12:25 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
name = "nu_pretty_hex"
|
|
|
|
path = "src/lib.rs"
|
2023-02-12 22:22:00 +00:00
|
|
|
bench = false
|
2021-05-01 16:12:25 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-06-03 19:38:54 +00:00
|
|
|
nu-ansi-term = "0.46.0"
|
2021-05-01 16:12:25 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-14 06:32:21 +00:00
|
|
|
heapless = { version = "0.7.8", default-features = false }
|
2022-10-29 19:19:12 +00:00
|
|
|
rand = "0.8.3"
|
2021-05-01 16:12:25 +00:00
|
|
|
|