mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: rust-rustls-0.19: Update to 0.19.1.
* gnu/packages/crates-tls.scm (rust-rustls-0.19): Update to 0.19.1. [arguments]: Don't skip the build. Skip the tests. [cargo-development-inputs]: Add rust-criterion-0.3, rust-env-logger-0.8, rust-log-0.4, rust-webpki-roots-0.21. Change-Id: If5af476371a1b375c0dc674ba26fd52be53803d3
This commit is contained in:
parent
3e22bfb5e9
commit
026899ade6
1 changed files with 9 additions and 6 deletions
|
@ -892,23 +892,26 @@ (define-public rust-rustls-0.19
|
|||
(package
|
||||
(inherit rust-rustls-0.20)
|
||||
(name "rust-rustls")
|
||||
(version "0.19.0")
|
||||
(version "0.19.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rustls" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "02wqas2pcxk75s9l9c9f1r5am7258bmqprh68pnqfvkwz0gx4kq6"))))
|
||||
(base32 "1mx6nzbplydy9khll4clsl35m6c1a2cgz9czr74swfgfzrsvdv9m"))))
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
`(#:tests? #f ; Not all files included.
|
||||
#:cargo-inputs
|
||||
(("rust-base64" ,rust-base64-0.13)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
("rust-ring" ,rust-ring-0.16)
|
||||
("rust-sct" ,rust-sct-0.6)
|
||||
("rust-webpki" ,rust-webpki-0.21))))))
|
||||
("rust-webpki" ,rust-webpki-0.21))
|
||||
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
|
||||
("rust-env-logger" ,rust-env-logger-0.8)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
("rust-webpki-roots" ,rust-webpki-roots-0.21))))))
|
||||
|
||||
(define-public rust-rustls-0.18
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue