diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 59c9e01d43..bb91baf18f 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -61187,6 +61187,25 @@ (define-public rust-pretty-env-logger-0.3 ("rust-chrono" ,rust-chrono-0.4) ("rust-env-logger" ,rust-env-logger-0.6)))))) +(define-public rust-pretty-hex-0.4 + (package + (name "rust-pretty-hex") + (version "0.4.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "pretty-hex" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0m0j8pqmh6gq1mq7yzp12z0ix159fw0di5lhiwv2y1j0m3j3xj5v")))) + (build-system cargo-build-system) + (arguments + (list #:cargo-development-inputs `(("rust-heapless" ,rust-heapless-0.8)))) + (home-page "https://github.com/wolandr/pretty-hex") + (synopsis "Prettified output of hexadecimal byte slices") + (description "Pretty hex dump of byte slices in the common style.") + (license license:expat))) + (define-public rust-prettyplease-0.2 (package (name "rust-prettyplease") @@ -61230,25 +61249,6 @@ (define-public rust-prettyplease-0.1 #:cargo-development-inputs (("rust-syn" ,rust-syn-1)))))) -(define-public rust-pretty-hex-0.4 - (package - (name "rust-pretty-hex") - (version "0.4.1") - (source - (origin - (method url-fetch) - (uri (crate-uri "pretty-hex" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 "0m0j8pqmh6gq1mq7yzp12z0ix159fw0di5lhiwv2y1j0m3j3xj5v")))) - (build-system cargo-build-system) - (arguments - (list #:cargo-development-inputs `(("rust-heapless" ,rust-heapless-0.8)))) - (home-page "https://github.com/wolandr/pretty-hex") - (synopsis "Prettified output of hexadecimal byte slices") - (description "Pretty hex dump of byte slices in the common style.") - (license license:expat))) - (define-public rust-pretty-hex-0.3 (package (inherit rust-pretty-hex-0.4)