mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add rust-trust-dns-resolver-0.19.
* gnu/packages/crates-io.scm (rust-trust-dns-resolver-0.19): New variable.
This commit is contained in:
parent
77a0536bfd
commit
65cdebd20a
1 changed files with 47 additions and 0 deletions
|
@ -29225,7 +29225,54 @@ (define-public rust-trust-dns-proto-0.19
|
|||
foundational DNS protocol library for all Trust-DNS projects.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-trust-dns-resolver-0.19
|
||||
(package
|
||||
(name "rust-trust-dns-resolver")
|
||||
(version "0.19.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "trust-dns-resolver" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0xqv31gndybcrr5gi6jjp47qcvdxsc147s69a0y0nc6qqgyws8qg"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-backtrace" ,rust-backtrace-0.3)
|
||||
("rust-cfg-if" ,rust-cfg-if-0.1)
|
||||
("rust-futures" ,rust-futures-0.3)
|
||||
("rust-ipconfig" ,rust-ipconfig-0.2)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
("rust-lru-cache" ,rust-lru-cache-0.1)
|
||||
("rust-resolv-conf" ,rust-resolv-conf-0.6)
|
||||
("rust-rustls" ,rust-rustls-0.17)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-thiserror" ,rust-thiserror-1)
|
||||
("rust-tokio" ,rust-tokio-0.2)
|
||||
("rust-tokio-openssl" ,rust-tokio-openssl-0.4)
|
||||
("rust-tokio-rustls" ,rust-tokio-rustls-0.13)
|
||||
("rust-tokio-tls" ,rust-tokio-tls-0.3)
|
||||
("rust-trust-dns-https" ,rust-trust-dns-https-0.19)
|
||||
("rust-trust-dns-native-tls" ,rust-trust-dns-native-tls-0.19)
|
||||
("rust-trust-dns-openssl" ,rust-trust-dns-openssl-0.19)
|
||||
("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19)
|
||||
("rust-trust-dns-rustls" ,rust-trust-dns-rustls-0.19)
|
||||
("rust-webpki-roots" ,rust-webpki-roots-0.19))
|
||||
#:cargo-development-inputs
|
||||
(("rust-env-logger" ,rust-env-logger-0.7)
|
||||
("rust-futures" ,rust-futures-0.3))))
|
||||
(home-page "http://www.trust-dns.org/index.html")
|
||||
(synopsis "Safe and secure DNS library")
|
||||
(description "Trust-DNS is a safe and secure DNS library. This Resolver
|
||||
library uses the Client library to perform all DNS queries. The Resolver is
|
||||
intended to be a high-level library for any DNS record resolution see Resolver
|
||||
and AsyncResolver for supported resolution types. The Client can be used for
|
||||
other queries.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-trust-dns-rustls-0.19
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue