Trust-DNS has been renamed to Hickory-DNS
This commit is contained in:
parent
3b6928ebcf
commit
a56139549f
2 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ base64 = "0.22"
|
||||||
# Used when hashing the state
|
# Used when hashing the state
|
||||||
ring = "0.17.7"
|
ring = "0.17.7"
|
||||||
# Used when querying the SRV record of other servers
|
# Used when querying the SRV record of other servers
|
||||||
trust-dns-resolver = "0.22.0"
|
hickory-resolver = "0.24"
|
||||||
# Used to find matching events for appservices
|
# Used to find matching events for appservices
|
||||||
regex = "1.8.1"
|
regex = "1.8.1"
|
||||||
# jwt jsonwebtokens
|
# jwt jsonwebtokens
|
||||||
|
|
|
@ -9,6 +9,7 @@ use crate::api::server_server::FedDest;
|
||||||
|
|
||||||
use crate::{services, Config, Error, Result};
|
use crate::{services, Config, Error, Result};
|
||||||
use futures_util::FutureExt;
|
use futures_util::FutureExt;
|
||||||
|
use hickory_resolver::TokioAsyncResolver;
|
||||||
use hyper::{
|
use hyper::{
|
||||||
client::connect::dns::{GaiResolver, Name},
|
client::connect::dns::{GaiResolver, Name},
|
||||||
service::Service as HyperService,
|
service::Service as HyperService,
|
||||||
|
@ -37,7 +38,6 @@ use std::{
|
||||||
};
|
};
|
||||||
use tokio::sync::{broadcast, watch::Receiver, Mutex, RwLock, Semaphore};
|
use tokio::sync::{broadcast, watch::Receiver, Mutex, RwLock, Semaphore};
|
||||||
use tracing::{error, info};
|
use tracing::{error, info};
|
||||||
use trust_dns_resolver::TokioAsyncResolver;
|
|
||||||
|
|
||||||
use base64::{engine::general_purpose, Engine as _};
|
use base64::{engine::general_purpose, Engine as _};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue