From 6e92b2e0fe526ec5328c72a96a0ab5bb53b41c4e Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Wed, 19 Apr 2023 23:00:00 +1000 Subject: [PATCH] Disable trust-dns-resolver/dns-over-quic due to build failure on freeBSD https://github.com/quinn-rs/quinn/issues/1469 Signed-off-by: Jiahao XU --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4c7bc4146..0001e055c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,7 +66,7 @@ strip-ansi-escapes = "0.1" tar = "0.4.36" tempfile = "3" # trust-dns-resolver must be kept in sync with the version reqwest uses -trust-dns-resolver = { version = "0.22.0", features = ["dnssec-ring", "dns-over-rustls", "dns-over-https-rustls", "dns-over-quic"] } +trust-dns-resolver = { version = "0.22.0", features = ["dnssec-ring", "dns-over-rustls", "dns-over-https-rustls"] } mime = "0.3" tokio = { version = "1", features = ["rt-multi-thread", "io-util", "time", "net", "process", "macros"] } tokio-serde = "0.8"