diff options
Diffstat (limited to 'azalea-protocol')
| -rw-r--r-- | azalea-protocol/Cargo.toml | 2 | ||||
| -rwxr-xr-x | azalea-protocol/src/resolver.rs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml index 414b8b4c..3d5d2ec1 100644 --- a/azalea-protocol/Cargo.toml +++ b/azalea-protocol/Cargo.toml @@ -47,7 +47,7 @@ thiserror = { workspace = true } tokio = { workspace = true, features = ["io-util", "net", "macros"] } tokio-util = { workspace = true, features = ["codec"] } tracing = { workspace = true } -trust-dns-resolver = { workspace = true, features = ["tokio-runtime"] } +hickory-resolver = { workspace = true, features = ["tokio-runtime"] } uuid = { workspace = true } [features] diff --git a/azalea-protocol/src/resolver.rs b/azalea-protocol/src/resolver.rs index 43f15dce..a21d5d9b 100755 --- a/azalea-protocol/src/resolver.rs +++ b/azalea-protocol/src/resolver.rs @@ -3,11 +3,11 @@ use std::net::{IpAddr, SocketAddr}; use async_recursion::async_recursion; -use thiserror::Error; -use trust_dns_resolver::{ +use hickory_resolver::{ config::{ResolverConfig, ResolverOpts}, Name, TokioAsyncResolver, }; +use thiserror::Error; use crate::ServerAddress; @@ -30,7 +30,7 @@ pub async fn resolve_address(address: &ServerAddress) -> Result<SocketAddr, Reso } // we specify Cloudflare instead of the default resolver because - // trust_dns_resolver has an issue on Windows where it's really slow using the + // hickory_resolver has an issue on Windows where it's really slow using the // default resolver let resolver = TokioAsyncResolver::tokio(ResolverConfig::cloudflare(), ResolverOpts::default()); |
