diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-12-24 10:08:21 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:56:38 +0200 |
commit | 8359de162f32abff47617d3774ee7273df5955ff (patch) | |
tree | 4d9d63333423f3c58afb5369f3d3b845c135b483 | |
parent | 9551b51c2cdbd677d595389a0a1b5f42582da95e (diff) | |
download | guix-8359de162f32abff47617d3774ee7273df5955ff.tar.gz |
gnu: rust-rustls-webpki-0.101: Update to 0.101.7.
* gnu/packages/crates-io.scm (rust-rustls-webpki-0.101): Update to 0.101.7. [cargo-inputs]: Replace rust-ring-0.16 with 0.17, rust-untrusted-0.7 with 0.9. Change-Id: I21d71bb84a2991285dc886df4ce8a0b6f35e7ed4
-rw-r--r-- | gnu/packages/crates-io.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6f78d44e6a..0b04529e99 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -67503,20 +67503,20 @@ PEM-encodings commonly used to store keys and certificates at rest.") (define-public rust-rustls-webpki-0.101 (package (name "rust-rustls-webpki") - (version "0.101.2") + (version "0.101.7") (source (origin (method url-fetch) (uri (crate-uri "rustls-webpki" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0ngs6y42k47jr14kka9w92hwyjsq3gm0j45nf8gsg05dfgyj4dsi")))) + "0rapfhpkqp75552i8r0y7f4vq7csb4k7gjjans0df73sxv8paqlb")))) (build-system cargo-build-system) (arguments `(#:tests? #f ; Not all files included. #:cargo-inputs - (("rust-ring" ,rust-ring-0.16) - ("rust-untrusted" ,rust-untrusted-0.7)) + (("rust-ring" ,rust-ring-0.17) + ("rust-untrusted" ,rust-untrusted-0.9)) #:cargo-development-inputs (("rust-base64" ,rust-base64-0.21) ("rust-bencher" ,rust-bencher-0.1) |