1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//! System DNS resolver for [`hyper`].
//!
//! Resolves the name via `getaddrinfo`, but more flexible than [`hyper`]
//! standard resolver.

#![warn(missing_docs, clippy::all)]

#[macro_use]
extern crate tracing;

#[macro_use]
extern crate derive_builder;

#[macro_use]
extern crate derivative;

mod addr_info_hints;
pub mod background;
pub mod system;

pub use addr_info_hints::AddrInfoHints;