mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-24 14:28:42 +00:00
Upgrade hickory-resolver to 0.25.0-alpha.5 (#2038)
* Upgrade hickory-resolver to 0.25.0-alpha.5 Update dependencies Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix compilation for hickory-resolver Cleanup use of removed feature Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix resolver.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Pin hickory-resolver to avoid breakage Cargo considers 0.25.0-alpha.* to be compatible while they can contain breaking changes between alpha versions. Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --------- Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
This commit is contained in:
parent
7918038770
commit
9b8ba9902d
2 changed files with 2 additions and 5 deletions
|
@ -2,7 +2,7 @@ use std::{net::SocketAddr, sync::Arc};
|
|||
|
||||
use hickory_resolver::{
|
||||
config::{LookupIpStrategy, ResolverConfig, ResolverOpts},
|
||||
system_conf, TokioAsyncResolver,
|
||||
system_conf, TokioResolver as TokioAsyncResolver,
|
||||
};
|
||||
use once_cell::sync::OnceCell;
|
||||
use reqwest::dns::{Addrs, Name, Resolve, Resolving};
|
||||
|
@ -50,8 +50,6 @@ fn get_configs() -> Result<(ResolverConfig, ResolverOpts), BoxError> {
|
|||
protocol,
|
||||
tls_dns_name: None,
|
||||
trust_negative_responses: false,
|
||||
#[cfg(feature = "rustls")]
|
||||
tls_config: None,
|
||||
bind_addr: None,
|
||||
http_endpoint: None,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue