#dns-resolver #hyper #hickory #connector #default #advanced

hyper-hickory

HTTP connector for hyper that uses hickory's DNS resolver

2 unstable releases

0.7.0 Jan 12, 2024
0.6.0 Oct 14, 2023

#114 in HTTP client

Download history 353/week @ 2024-01-05 663/week @ 2024-01-12 1208/week @ 2024-01-19 839/week @ 2024-01-26 996/week @ 2024-02-02 1175/week @ 2024-02-09 967/week @ 2024-02-16 661/week @ 2024-02-23 1178/week @ 2024-03-01 1014/week @ 2024-03-08 1392/week @ 2024-03-15 953/week @ 2024-03-22 1229/week @ 2024-03-29 379/week @ 2024-04-05 1208/week @ 2024-04-12 2092/week @ 2024-04-19

5,165 downloads per month
Used in odd-box

MIT license

13KB
138 lines

hyper-hickory

This crate provides a HTTP connector for hyper that uses the fast and advanced DNS resolver of hickory instead of the default threadpool implementation of hyper.

Usage

use http_body_util::Full; // Or your preferred Body implementation
use hyper::body::Bytes;
use hyper_hickory::HickoryResolver;
use hyper_util::{client::legacy::Client, rt::TokioExecutor};

let connector = HickoryResolver::default().into_http_connector();
let client: Client<_, Full<Bytes>> = Client::builder(TokioExecutor::new()).build(connector);

Resolvers

There is a HickoryResolver resolver which can be built from an AsyncResolver using HickoryResolver::from_async_resolver.

For most cases where you are happy to use the standard TokioRuntimeProvider, the TokioHickoryResolver should be used and is able to be built much more easily.

Types of connectors

There are 2 connectors:

Hickory options

The crate has other features that toggle functionality in hickory-resolver, namingly dns-over-openssl, dns-over-native-tls and dns-over-rustls (combined with rustls-webpki or rustls-native) for DNS-over-TLS, dns-over-https-rustls for DNS-over-HTTPS and dnssec-openssl and dnssec-ring for DNSSEC.

A note on DNSSEC

DNSSEC functionality was never actually used if enabled prior to version 0.5.0 of this crate. This has been changed since and might result in sudden, breaking behaviour due to hickory-resolver failing on unsigned records.

This behaviour will continue until DNSSEC is improved in hickory.

Dependencies

~10–27MB
~403K SLoC