This commit is contained in:
Frank Denis 2022-06-24 23:49:04 +02:00
parent d12b9deb35
commit fd65582aa6
2 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ default = ["tls"]
tls = ["tokio-rustls"]
[dependencies]
anyhow = "1.0.57"
anyhow = "1.0.58"
arc-swap = "1.5.0"
base64 = "0.13.0"
byteorder = "1.4.3"
@ -25,7 +25,7 @@ hpke = "0.5.1"
hyper = { version = "0.14.19", default-features = false, features = ["server", "http1", "http2", "stream"] }
odoh-rs = "1.0.0-alpha.1"
rand = "0.8.5"
tokio = { version = "1.19.1", features = ["net", "rt-multi-thread", "parking_lot", "time", "sync"] }
tokio = { version = "1.19.2", features = ["net", "rt-multi-thread", "parking_lot", "time", "sync"] }
tokio-rustls = { version = "0.23.4", features = ["early-data"], optional = true }
rustls-pemfile = "1.0.0"

View file

@ -169,6 +169,6 @@ impl DoH {
}
Ok::<_, DoHError>(())
};
return join!(https_service, cert_service).0;
join!(https_service, cert_service).0
}
}