mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
gnu: rust-tokio-native-tls-0.3: Update to 0.3.1.
* gnu/packages/crates-io.scm (rust-tokio-native-tls-0.3): Update to 0.3.1. [arguments]: Don't skip build. Add cargo-test-flags. [cargo-development-inputs]: Add rust-cfg-if-0.1, rust-env-logger-0.6, rust-futures-0.3, rust-lazy-static-1, rust-openssl-0.10, rust-schannel-0.1, rust-security-framework-0.2, rust-tempfile-3, rust-tokio-1, rust-tokio-util-0.6, rust-winapi-0.3. [native-inputs]: Add pkg-config. [inputs]: Add openssl. Change-Id: I3362234da101a939bcfc31eabf37cf2cc6eadaea
This commit is contained in:
parent
627640c6c8
commit
16e2e8bc1d
1 changed files with 27 additions and 4 deletions
|
@ -77985,20 +77985,43 @@ (define-public rust-tokio-mockstream-1
|
||||||
(define-public rust-tokio-native-tls-0.3
|
(define-public rust-tokio-native-tls-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-tokio-native-tls")
|
(name "rust-tokio-native-tls")
|
||||||
(version "0.3.0")
|
(version "0.3.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "tokio-native-tls" version))
|
(uri (crate-uri "tokio-native-tls" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0yvikgmph2qjq0ni2h2wfaxkzhbnc09c2544av0zidyj1dk9bngp"))))
|
(base32 "1wkfg6zn85zckmv4im7mv20ca6b1vmlib5xwz9p7g19wjfmpdbmv"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:cargo-test-flags
|
||||||
|
'("--release" "--"
|
||||||
|
;; These tests need network connectivity
|
||||||
|
"--skip=self_signed"
|
||||||
|
"--skip=expired"
|
||||||
|
"--skip=wrong_host"
|
||||||
|
"--skip=untrusted_root"
|
||||||
|
"--skip=fetch_google")
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-native-tls" ,rust-native-tls-0.2)
|
(("rust-native-tls" ,rust-native-tls-0.2)
|
||||||
("rust-tokio" ,rust-tokio-1))))
|
("rust-tokio" ,rust-tokio-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-cfg-if" ,rust-cfg-if-0.1)
|
||||||
|
("rust-env-logger" ,rust-env-logger-0.6)
|
||||||
|
("rust-futures" ,rust-futures-0.3)
|
||||||
|
("rust-lazy-static" ,rust-lazy-static-1)
|
||||||
|
("rust-openssl" ,rust-openssl-0.10)
|
||||||
|
("rust-schannel" ,rust-schannel-0.1)
|
||||||
|
("rust-security-framework" ,rust-security-framework-0.2)
|
||||||
|
("rust-tempfile" ,rust-tempfile-3)
|
||||||
|
("rust-tokio" ,rust-tokio-1)
|
||||||
|
("rust-tokio-util" ,rust-tokio-util-0.6)
|
||||||
|
("rust-winapi" ,rust-winapi-0.3))))
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config))
|
||||||
|
(inputs
|
||||||
|
(list openssl))
|
||||||
(home-page "https://tokio.rs")
|
(home-page "https://tokio.rs")
|
||||||
(synopsis "TLS/SSL streams for Tokio")
|
(synopsis "TLS/SSL streams for Tokio")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue