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-08-14 14:21:20 +02:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-pretty-hex"
|
2022-01-20 14:13:45 +01:00
|
|
|
edition = "2021"
|
2021-12-24 08:22:11 +01:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu-pretty-hex"
|
2023-12-14 20:55:48 +01:00
|
|
|
version = "0.88.2"
|
2021-05-01 18:12:25 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
name = "nu_pretty_hex"
|
|
|
|
path = "src/lib.rs"
|
2023-02-12 23:22:00 +01:00
|
|
|
bench = false
|
2021-05-01 18:12:25 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2023-07-24 13:16:18 +02:00
|
|
|
nu-ansi-term = "0.49.0"
|
2021-05-01 18:12:25 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-26 17:32:48 +02:00
|
|
|
heapless = { version = "0.7", default-features = false }
|
|
|
|
rand = "0.8"
|