diff --git a/crates/binstalk-downloader/src/remote/resolver.rs b/crates/binstalk-downloader/src/remote/resolver.rs index 0f14d97a..4a7b64bc 100644 --- a/crates/binstalk-downloader/src/remote/resolver.rs +++ b/crates/binstalk-downloader/src/remote/resolver.rs @@ -9,7 +9,7 @@ use reqwest::dns::{Addrs, Name, Resolve, Resolving}; use tracing::{debug, instrument, warn}; #[cfg(windows)] -use hickory_resolver::{config::NameServerConfig, xfer::Protocol}; +use hickory_resolver::{config::NameServerConfig, proto::xfer::Protocol}; type BoxError = Box; @@ -53,6 +53,7 @@ fn get_configs() -> Result<(ResolverConfig, ResolverOpts), BoxError> { #[cfg(feature = "rustls")] tls_config: None, bind_addr: None, + http_endpoint: None, }) } });