From 8a3928cacabf66d5af1eebf720d33d201b685c4d Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Thu, 17 Nov 2022 11:56:19 +1100 Subject: [PATCH] Enable tokio runtime to workaround bad cfg's --- protocols/mdns/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/mdns/Cargo.toml b/protocols/mdns/Cargo.toml index 78b3a26d67f..af892a99e77 100644 --- a/protocols/mdns/Cargo.toml +++ b/protocols/mdns/Cargo.toml @@ -22,7 +22,7 @@ rand = "0.8.3" smallvec = "1.6.1" socket2 = { version = "0.4.0", features = ["all"] } tokio = { version = "1.19", default-features = false, features = ["net", "time"], optional = true} -trust-dns-proto = { version = "0.22.0", default-features = false, features = ["mdns"] } +trust-dns-proto = { version = "0.22.0", default-features = false, features = ["mdns", "tokio-runtime"] } void = "1.0.2" [features]