[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
186/276: gnu: rust-blake3-1: Update to 1.5.0.
From: |
guix-commits |
Subject: |
186/276: gnu: rust-blake3-1: Update to 1.5.0. |
Date: |
Wed, 18 Oct 2023 04:50:01 -0400 (EDT) |
efraim pushed a commit to branch rust-team
in repository guix.
commit 0294bff75db8c1f92f3e2c7b39854068efba7953
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Oct 3 16:06:05 2023 +0300
gnu: rust-blake3-1: Update to 1.5.0.
* gnu/packages/crypto.scm (rust-blake3-1): Update to 1.5.0.
[source]: Download using url-fetch.
[arguments]: Skip tests.
[cargo-inputs]: Add rust-memmap2-0.7, rust-serde-1, rust-zerioze-1.
Replace rust-constant-time-eq-0.1 with 0.3, rust-digest-0.9 with 0.10.
Remove rust-crypto-mac-0.11.
[cargo-development-inputs]: Add rust-serde-json-1, rust-tempfile-3.
Replace rust-page-size-0.4 with 0.6. Remove rust-cc-1.
---
gnu/packages/crypto.scm | 35 ++++++++++++++++++-----------------
1 file changed, 18 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index 5989cc5991..3aef4d3135 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -1552,36 +1552,37 @@ SHA-3, and BLAKE2.")
(define-public rust-blake3-1
(package
(name "rust-blake3")
- (version "1.0.0")
- ;; The crate does not include the reference_impl directory.
+ (version "1.5.0")
(source
(origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/BLAKE3-team/BLAKE3")
- (commit version)))
- (file-name (git-file-name name version))
+ (method url-fetch)
+ (uri (crate-uri "blake3" version))
+ (file-name (string-append name "-" version ".tar.gz"))
(sha256
- (base32
- "09xi7rjyi5hgxyfpias485x5argwqygvfl9sggiw221qjdfxpbdn"))))
+ (base32 "11ysh12zcqq6xkjxh5cbrmnwzalprm3z552i5ff7wm5za9hz0c82"))))
(build-system cargo-build-system)
(arguments
(list
+ #:tests? #f ; use of undeclared crate or module `reference_impl`
#:cargo-inputs
`(("rust-arrayref" ,rust-arrayref-0.3)
("rust-arrayvec" ,rust-arrayvec-0.7)
("rust-cc" ,rust-cc-1)
("rust-cfg-if" ,rust-cfg-if-1)
- ("rust-constant-time-eq" ,rust-constant-time-eq-0.1)
- ("rust-crypto-mac" ,rust-crypto-mac-0.11)
- ("rust-digest" ,rust-digest-0.9)
- ("rust-rayon" ,rust-rayon-1))
+ ("rust-constant-time-eq" ,rust-constant-time-eq-0.3)
+ ("rust-digest" ,rust-digest-0.10)
+ ("rust-memmap2" ,rust-memmap2-0.7)
+ ("rust-rayon" ,rust-rayon-1)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-zeroize" ,rust-zeroize-1))
#:cargo-development-inputs
- `(("rust-cc" ,rust-cc-1)
- ("rust-hex" ,rust-hex-0.4)
- ("rust-page-size" ,rust-page-size-0.4)
+ `(("rust-hex" ,rust-hex-0.4)
+ ("rust-hmac" ,rust-hmac-0.12)
+ ("rust-page-size" ,rust-page-size-0.6)
("rust-rand" ,rust-rand-0.8)
- ("rust-rand-chacha" ,rust-rand-chacha-0.3))))
+ ("rust-rand-chacha" ,rust-rand-chacha-0.3)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-tempfile" ,rust-tempfile-3))))
(home-page "https://github.com/BLAKE3-team/BLAKE3")
(synopsis "BLAKE3 hash function Rust implementation")
(description "This crate provides the official Rust implementation of the
- 107/276: gnu: Add rust-serial-test-2., (continued)
- 107/276: gnu: Add rust-serial-test-2., guix-commits, 2023/10/18
- 123/276: gnu: Add rust-auto-impl-0.5., guix-commits, 2023/10/18
- 136/276: gnu: Add rust-napi-derive-backend-1., guix-commits, 2023/10/18
- 128/276: gnu: rust-proptest-1: Update to 1.3.1., guix-commits, 2023/10/18
- 130/276: gnu: rust-retain-mut-0.1: Update to 0.1.9., guix-commits, 2023/10/18
- 137/276: gnu: Add rust-napi-derive-2., guix-commits, 2023/10/18
- 138/276: gnu: Add rust-napi-build-1., guix-commits, 2023/10/18
- 145/276: gnu: Add rust-serde-wasm-bindgen-0.3., guix-commits, 2023/10/18
- 169/276: gnu: Add rust-termtree-0.4., guix-commits, 2023/10/18
- 184/276: gnu: rust-spin-0.9: Update to 0.9.8., guix-commits, 2023/10/18
- 186/276: gnu: rust-blake3-1: Update to 1.5.0.,
guix-commits <=
- 211/276: gnu: rust-merge-0.1: Add missing inputs., guix-commits, 2023/10/18
- 235/276: gnu: rust-quinn-0.8: Add missing input., guix-commits, 2023/10/18
- 238/276: gnu: rust-libpijul-0.12: Skip build., guix-commits, 2023/10/18
- 243/276: gnu: rust-security-framework-sys-0.2: Skip build., guix-commits, 2023/10/18
- 244/276: gnu: rust-serde-repr-0.1: Update to 0.1.16., guix-commits, 2023/10/18
- 252/276: gnu: rust-trust-dns-https-0.19: Add missing input., guix-commits, 2023/10/18
- 251/276: gnu: rust-trust-dns-https-0.3: Skip build., guix-commits, 2023/10/18
- 264/276: gnu: rust-tower-service-0.3: Update to 0.3.2., guix-commits, 2023/10/18
- 268/276: gnu: rust-rustfix-0.6: Update to 0.6.1., guix-commits, 2023/10/18
- 272/276: gnu: rust-zstd-0.9: Downgrade to 0.9.2+zstd.1.5.1., guix-commits, 2023/10/18