diff options
author | Aleksandr Vityazev <avityazev@posteo.org> | 2022-01-17 13:10:29 +0000 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-22 13:09:23 +0100 |
commit | 22a586bca5eea440ba359f8fbc341232a48c5c10 (patch) | |
tree | 262ad91bbdb0e9f7dde4a02bb169c0b14e8058ad | |
parent | 371e4ce4e1083e7528efc5f66552507adb3695aa (diff) | |
download | guix-22a586bca5eea440ba359f8fbc341232a48c5c10.tar.gz |
gnu: rust-blobby-0.3: Update to 0.3.1.
* gnu/packages/crates-io.scm (rust-blobby-0.3): Update to 0.3.1. [arguments]: <#:cargo-development-inputs>: Use rust-hex-0.4. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/crates-io.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 763e40bc15..3e829a7618 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -6552,7 +6552,7 @@ BLAKE2bp hash functions.") (define-public rust-blobby-0.3 (package (name "rust-blobby") - (version "0.3.0") + (version "0.3.1") (source (origin (method url-fetch) @@ -6560,12 +6560,11 @@ BLAKE2bp hash functions.") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 - "1s2f3a7lx5rd26554d9940basff7qpyf1y8gkc309cgc8csmalpw")))) + (base32 "1v7a6lzxbvrxpnk2jv895315v7yas1cvk26mmbl90ylp1719ax44")))) (build-system cargo-build-system) (arguments `(#:cargo-development-inputs - (("rust-hex" ,rust-hex-0.3)))) + (("rust-hex" ,rust-hex-0.4)))) (home-page "https://github.com/RustCrypto/utils") (synopsis "Iterator over simple binary blob storage") (description "This package provides an iterator over simple binary blob |