mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: rust-rustls-native-certs-0.6: Update to 0.6.3.
* gnu/packages/crates-io.scm (rust-rustls-native-certs-0.6): Update to 0.6.3. [arguments]: Don't skip build. Skip tests. [cargo-inputs]: Replace rust-rustls-pemfile-0.2 with 1. [cargo-development-inputs]: Add rust-rustls-webpki-0.100. Replace rust-rustls-0.20 with 0.21, rust-serial-test-0.5 with 2, rust-webpki-roots-0.22 with 0.23, rust-x509-parser-0.12 with 0.15. Remove rust-webpki-0.22. [native-inputs]: Add perl. Change-Id: I4f4c489252222077c0dfecc3964e2b0663546e64
This commit is contained in:
parent
899a3ab910
commit
7d3e6bee5b
1 changed files with 11 additions and 12 deletions
|
@ -66361,32 +66361,31 @@ (define-public rust-rustls-ffi-0.8
|
|||
(define-public rust-rustls-native-certs-0.6
|
||||
(package
|
||||
(name "rust-rustls-native-certs")
|
||||
(version "0.6.1")
|
||||
(version "0.6.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rustls-native-certs" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0hq9h3kri19kv00gvbq61h21rarqadxh6y98wj0c2gvxlbgypaaw"))))
|
||||
(base32 "007zind70rd5rfsrkdcfm8vn09j8sg02phg9334kark6rdscxam9"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
`(#:tests? #f ; Tests want network access.
|
||||
#:cargo-inputs
|
||||
(("rust-openssl-probe" ,rust-openssl-probe-0.1)
|
||||
("rust-rustls-pemfile" ,rust-rustls-pemfile-0.2)
|
||||
("rust-rustls-pemfile" ,rust-rustls-pemfile-1)
|
||||
("rust-schannel" ,rust-schannel-0.1)
|
||||
("rust-security-framework" ,rust-security-framework-2))
|
||||
#:cargo-development-inputs
|
||||
(("rust-ring" ,rust-ring-0.16)
|
||||
("rust-rustls" ,rust-rustls-0.20)
|
||||
("rust-serial-test" ,rust-serial-test-0.5)
|
||||
("rust-rustls" ,rust-rustls-0.21)
|
||||
("rust-rustls-webpki" ,rust-rustls-webpki-0.100)
|
||||
("rust-serial-test" ,rust-serial-test-2)
|
||||
("rust-untrusted" ,rust-untrusted-0.7)
|
||||
("rust-webpki" ,rust-webpki-0.22)
|
||||
("rust-webpki-roots" ,rust-webpki-roots-0.22)
|
||||
("rust-x509-parser" ,rust-x509-parser-0.12))))
|
||||
("rust-webpki-roots" ,rust-webpki-roots-0.23)
|
||||
("rust-x509-parser" ,rust-x509-parser-0.15))))
|
||||
(native-inputs (list perl))
|
||||
(home-page "https://github.com/ctz/rustls-native-certs")
|
||||
(synopsis "Use the platform native certificate store with rustls")
|
||||
(description "@code{rustls-native-certs} allows rustls to use the platform
|
||||
|
|
Loading…
Reference in a new issue