diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 30267023..a9f72eb9 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -93,8 +93,8 @@ tls = ["dns-over-openssl"] # WARNING: there is a bug in the mutual tls auth code at the moment see issue #100 # mtls = ["hickory-client/mtls"] -webpki-roots = ["hickory-client/webpki-roots"] -native-certs = ["hickory-client/native-certs"] +webpki-roots = ["hickory-client/webpki-roots", "hickory-server/webpki-roots"] +native-certs = ["hickory-client/native-certs", "hickory-server/native-certs"] [[bin]] name = "hickory-dns" diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index cc07ce23..e4da6f82 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -100,6 +100,9 @@ dns-over-h3 = [ tls-openssl = ["dns-over-openssl"] tls = ["dns-over-openssl"] +webpki-roots = ["hickory-resolver/webpki-roots"] +native-certs = ["hickory-resolver/native-certs"] + # WARNING: there is a bug in the mutual tls auth code at the moment see issue #100 # mtls = ["hickory-client/mtls"]