hickory-resolver 0.26.0-beta.2

hickory-resolver is a safe and secure DNS stub resolver library intended to be a high-level library for DNS record resolution.
Documentation
#[cfg(feature = "tokio")]
use test_support::subscribe;

// Keep this in sync with the example in the README.
#[cfg(feature = "tokio")]
#[tokio::test]
async fn readme_example() {
    subscribe();

    use crate::Resolver;
    use crate::config::{GOOGLE, ResolverConfig};
    use crate::net::runtime::TokioRuntimeProvider;

    // Construct a new Resolver with default configuration options
    let resolver = Resolver::builder_with_config(
        ResolverConfig::udp_and_tcp(&GOOGLE),
        TokioRuntimeProvider::default(),
    )
    .build()
    .unwrap();

    // On Unix/Posix systems, this will read the /etc/resolv.conf
    // let resolver = TokioResolver::builder(TokioRuntimeProvider::default()).unwrap().build();

    // Lookup the IP addresses associated with a name.
    let response = resolver.lookup_ip("www.example.com.").await.unwrap();

    // There can be many addresses associated with the name,
    //  this can return IPv4 and/or IPv6 addresses
    let _address = response.iter().next().expect("no addresses returned!");
}

// Keep this in sync with the example in the README.
#[cfg(feature = "__tls")]
#[test]
fn readme_tls() {
    use crate::Resolver;
    use crate::config::{CLOUDFLARE, ResolverConfig};
    use crate::net::runtime::TokioRuntimeProvider;

    // Construct a new Resolver with default configuration options
    let resolver = Resolver::builder_with_config(
        ResolverConfig::tls(&CLOUDFLARE),
        TokioRuntimeProvider::default(),
    )
    .build();

    let _ = resolver;
}