mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: rust-trust-dns-resolver-0.18: Downgrade to 0.18.0-alpha.2.
* gnu/packages/crates-web.scm (rust-trust-dns-resolver-0.18): Downgrade to 0.18.0-alpha.2. [arguments]: Don't skip the tests. Add cargo-test-flags. [cargo-inputs]: Replace rust-trust-dns-https-0.18 with 0.18.0-alpha.2, rust-trust-dns-native-tls-0.18 with 0.18.0-alpha.2, rust-trust-dns-openssl-0.18 with 0.18.0-alpha.2, rust-trust-dns-proto-0.18 with 0.18.0-alpha.2, rust-trust-dns-rustls-0.18 with 0.18.0-alpha.2. Change-Id: If0c0a20caf15746b24eee426247536f840861f55
This commit is contained in:
parent
31da99a9c7
commit
557068ee7c
1 changed files with 23 additions and 9 deletions
|
@ -6551,21 +6551,35 @@ (define-public rust-trust-dns-resolver-0.19
|
|||
(("rust-env-logger" ,rust-env-logger-0.7)
|
||||
("rust-futures" ,rust-futures-0.3))))))
|
||||
|
||||
(define-public rust-trust-dns-resolver-0.18
|
||||
(define-public rust-trust-dns-resolver-0.18.0-alpha.2
|
||||
(package
|
||||
(inherit rust-trust-dns-resolver-0.19)
|
||||
(name "rust-trust-dns-resolver")
|
||||
(version "0.18.1")
|
||||
(version "0.18.0-alpha.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "trust-dns-resolver" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0cldg6y937il4kjk7rirgfhmk0chz41w7qys9h96skaznh4dzmvj"))))
|
||||
(base32 "0bsal2vz7q3fqdyxa0j1rbbh1hm8mxxv7mf62hjqnvr25d8b343g"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #false ;network unreachable
|
||||
`(#:cargo-test-flags
|
||||
'("--release" "--lib" "--bins" "--tests" "--"
|
||||
"--skip=async_resolver::tests::test_domain_search"
|
||||
"--skip=async_resolver::tests::test_fqdn"
|
||||
"--skip=async_resolver::tests::test_idna"
|
||||
"--skip=async_resolver::tests::test_large_ndots"
|
||||
"--skip=async_resolver::tests::test_lookup_cloudflare"
|
||||
"--skip=async_resolver::tests::test_lookup_google"
|
||||
"--skip=async_resolver::tests::test_lookup_quad9"
|
||||
"--skip=async_resolver::tests::test_ndots"
|
||||
"--skip=async_resolver::tests::test_search_list"
|
||||
"--skip=hosts::tests::test_read_hosts_conf"
|
||||
"--skip=name_server::name_server::tests::test_name_server"
|
||||
"--skip=resolver::tests::test_lookup"
|
||||
"--skip=system_conf::unix::tests::test_read_resolv_conf")
|
||||
#:cargo-inputs
|
||||
(("rust-cfg-if" ,rust-cfg-if-0.1)
|
||||
("rust-failure" ,rust-failure-0.1)
|
||||
|
@ -6579,11 +6593,11 @@ (define-public rust-trust-dns-resolver-0.18
|
|||
("rust-serde" ,rust-serde-1)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-tokio" ,rust-tokio-0.2)
|
||||
("rust-trust-dns-https" ,rust-trust-dns-https-0.18)
|
||||
("rust-trust-dns-native-tls" ,rust-trust-dns-native-tls-0.18)
|
||||
("rust-trust-dns-openssl" ,rust-trust-dns-openssl-0.18)
|
||||
("rust-trust-dns-proto" ,rust-trust-dns-proto-0.18)
|
||||
("rust-trust-dns-rustls" ,rust-trust-dns-rustls-0.18)
|
||||
("rust-trust-dns-https" ,rust-trust-dns-https-0.18.0-alpha.2)
|
||||
("rust-trust-dns-native-tls" ,rust-trust-dns-native-tls-0.18.0-alpha.2)
|
||||
("rust-trust-dns-openssl" ,rust-trust-dns-openssl-0.18.0-alpha.2)
|
||||
("rust-trust-dns-proto" ,rust-trust-dns-proto-0.18.0-alpha.2)
|
||||
("rust-trust-dns-rustls" ,rust-trust-dns-rustls-0.18.0-alpha.2)
|
||||
("rust-webpki-roots" ,rust-webpki-roots-0.18))
|
||||
#:cargo-development-inputs
|
||||
(("rust-env-logger" ,rust-env-logger-0.7)
|
||||
|
|
Loading…
Reference in a new issue