From 222db7400ac67c62f8c0be1c2e2f331ccef4f3e3 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 1 Apr 2024 19:46:47 +0300 Subject: [PATCH] gnu: rust-cookie-0.11: Update to 0.11.5. * gnu/packages/crates-io.scm (rust-cookie-0.11): Update to 0.11.5. [arguments]: Don't skip the build. [cargo-inputs]: Replace rust-aes-gcm-0.5 with 0.8, rust-base64-0.12 with 0.13, rust-hkdf-0.8 with 0.10, rust-hmac-0.7 with 0.10, rust-rand-0.7 with 0.8, rust-sha2-0.8 with 0.9. Change-Id: Idc9cff06f08656679b67c176e6e028870bc98959 --- gnu/packages/crates-io.scm | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 8699a9af6b..9d6bb977e5 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -15763,24 +15763,23 @@ It supports signed and private (encrypted + signed) jars.") (package (inherit rust-cookie-0.12) (name "rust-cookie") - (version "0.11.3") + (version "0.11.5") (source (origin (method url-fetch) (uri (crate-uri "cookie" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0i2x04kx1ifljsnwsa83k7cpmajk9j4ayyx2h11y6lkji6hcv5ap")))) + (base32 "1mwbcygk9als9h7bfp8fhax2ah278qamaz9l9p64in6iirv1h85y")))) (arguments - `(#:skip-build? #t - #:cargo-inputs - (("rust-aes-gcm" ,rust-aes-gcm-0.5) - ("rust-base64" ,rust-base64-0.12) - ("rust-hkdf" ,rust-hkdf-0.8) - ("rust-hmac" ,rust-hmac-0.7) + `(#:cargo-inputs + (("rust-aes-gcm" ,rust-aes-gcm-0.8) + ("rust-base64" ,rust-base64-0.13) + ("rust-hkdf" ,rust-hkdf-0.10) + ("rust-hmac" ,rust-hmac-0.10) ("rust-percent-encoding" ,rust-percent-encoding-2) - ("rust-rand" ,rust-rand-0.7) - ("rust-sha2" ,rust-sha2-0.8) + ("rust-rand" ,rust-rand-0.8) + ("rust-sha2" ,rust-sha2-0.9) ("rust-time" ,rust-time-0.1)))))) (define-public rust-cookie-factory-0.3