#dns-resolver #dns-queries #dns #dns-resolution #dns-query #dns-lookup #dns-records

async-std-resolver

Hickory DNS is a safe and secure DNS library, for async-std. This Resolver library uses the hickory-proto library to perform all DNS queries. The Resolver is intended to be a high-level library for any DNS record resolution see Resolver and AsyncResolver for supported resolution types. The Client can be used for other queries.

31 releases

new 0.24.1 Apr 18, 2024
0.24.0 Oct 14, 2023
0.23.2 Oct 23, 2023
0.23.0-alpha.4 Jun 11, 2023
0.19.5 Apr 28, 2020

#678 in Network programming

Download history 3348/week @ 2023-12-23 4726/week @ 2023-12-30 6020/week @ 2024-01-06 8271/week @ 2024-01-13 7393/week @ 2024-01-20 6262/week @ 2024-01-27 8642/week @ 2024-02-03 6746/week @ 2024-02-10 7225/week @ 2024-02-17 7617/week @ 2024-02-24 5954/week @ 2024-03-02 6957/week @ 2024-03-09 6620/week @ 2024-03-16 7551/week @ 2024-03-23 6873/week @ 2024-03-30 5074/week @ 2024-04-06

27,087 downloads per month
Used in 57 crates (13 directly)

MIT/Apache

405KB
7.5K SLoC

Overview

Hickory DNS Async-Std Resolver is a library which implements the DNS resolver using the Hickory DNS Resolver library.

This library contains implementations for IPv4 (A) and IPv6 (AAAA) resolution, more features are in the works. It is built on top of the async-std async-io project, this allows it to be integrated into other systems using the async-std and futures libraries. The Hickory DNS project contains other libraries for DNS: a client library for raw protocol usage, a server library for hosting zones, and variations on the TLS implementation over rustls and native-tls.

NOTICE This project was rebranded from Trust-DNS to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, from 0.24 and onward.

Features

  • Various IPv4 and IPv6 lookup strategies
  • /etc/resolv.conf based configuration on Unix/Posix systems
  • NameServer pools with performance based priority usage
  • Caching of query results
  • NxDomain/NoData caching (negative caching)
  • TBD (in tokio impl): DNSSEC validation
  • Generic Record Type Lookup
  • CNAME chain resolution
  • experimental mDNS support (enable with mdns feature)
  • TBD (in tokio impl): DNS over TLS (utilizing native-tls, rustls, and openssl; native-tls or rustls are recommended)
  • TBD (in tokio impl): DNS over HTTPS (currently only supports rustls)

Example

use std::net::*;
use async_std::prelude::*;
use async_std_resolver::{resolver, config};

#[async_std::main]
async fn main() {
  // Construct a new Resolver with default configuration options
  let resolver = resolver(
    config::ResolverConfig::default(),
    config::ResolverOpts::default(),
  ).await;

  // Lookup the IP addresses associated with a name.
  // This returns a future that will lookup the IP addresses, it must be run in the Core to
  //  to get the actual result.
  let mut 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!");
  if address.is_ipv4() {
    assert_eq!(address, IpAddr::V4(Ipv4Addr::new(93, 184, 216, 34)));
  } else {
    assert_eq!(address, IpAddr::V6(Ipv6Addr::new(0x2606, 0x2800, 0x220, 0x1, 0x248, 0x1893, 0x25c8, 0x1946)));
  }
}

Minimum Rust Version

The current minimum rustc version for this project is 1.67

Versioning

Hickory DNS does its best job to follow semver. Hickory DNS will be promoted to 1.0 upon stabilization of the publicly exposed APIs. This does not mean that Hickory DNS will necessarily break on upgrades between 0.x updates. Whenever possible, old APIs will be deprecated with notes on what replaced those deprecations. Hickory DNS will make a best effort to never break software which depends on it due to API changes, though this can not be guaranteed. Deprecated interfaces will be maintained for at minimum one major release after that in which they were deprecated (where possible), with the exception of the upgrade to 1.0 where all deprecated interfaces will be planned to be removed.

Dependencies

~9–21MB
~314K SLoC