diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-02-22 11:24:23 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-05-07 19:29:02 +0300 |
commit | 1af6671474fd922b3e659762353a0d33fe849df0 (patch) | |
tree | 7f7d31623c487e036f58a36c7758e5d80305cb4a /gnu/packages | |
parent | 36360e69fbec9c79b51a69f0d863d16f4e8c2654 (diff) | |
download | guix-1af6671474fd922b3e659762353a0d33fe849df0.tar.gz |
gnu: rust-rustls-0.20: Update to 0.20.8.
* gnu/packages/crates-io.scm (rust-rustls-0.20): Update to 0.20.8. [arguments]: Don't skip build. Skip tests. [cargo-inputs]: Add rust-rustversion-1. [cargo-development-inputs]: Replace rust-rustls-pemfile-0.2 with 1.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index bb83bf2ce9..fcec0512ea 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -50455,7 +50455,7 @@ rustc compiler.") (define-public rust-rustls-0.20 (package (name "rust-rustls") - (version "0.20.2") + (version "0.20.8") (source (origin (method url-fetch) @@ -50463,13 +50463,14 @@ rustc compiler.") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "111z24faq1i1z3gbznfgl7qp3in2fx1y1adijjsl1q7kj0i5wznk")))) + (base32 "0bqfymq5bjs1jxg1iw2nn4ab3kzz2lrk8a1vx3s98lhp9p3qzxzz")))) (build-system cargo-build-system) (arguments - `(#:skip-build? #t + `(#:tests? #f ; Not all files included. #:cargo-inputs (("rust-log" ,rust-log-0.4) ("rust-ring" ,rust-ring-0.16) + ("rust-rustversion" ,rust-rustversion-1) ("rust-sct" ,rust-sct-0.7) ("rust-webpki" ,rust-webpki-0.22)) #:cargo-development-inputs @@ -50477,7 +50478,7 @@ rustc compiler.") ("rust-criterion" ,rust-criterion-0.3) ("rust-env-logger" ,rust-env-logger-0.9) ("rust-log" ,rust-log-0.4) - ("rust-rustls-pemfile" ,rust-rustls-pemfile-0.2) + ("rust-rustls-pemfile" ,rust-rustls-pemfile-1) ("rust-webpki-roots" ,rust-webpki-roots-0.22)))) (home-page "https://github.com/rustls/rustls") (synopsis "Modern TLS library written in Rust") |