Crate domain

source ·
Expand description

A DNS library for Rust.

This crates provides a number of building blocks for developing functionality related to the DNS. It provides fundamental types, traits, and code as well as a wide range of optional features. The intent is to eventually cover all aspects of modern DNS.

The crate uses feature flags to allow you to select only those modules you need for you particular project. In most cases, the feature names are equal to the module they enable.

Modules

A set of modules providing fundamental types and functionality is always enabled:

  • base contains a wide variety of types, traits, and functionality to deal with DNS data, and
  • rdata contains types and implementations for a growing number of record types.

In addition to those two basic modules, there are a number of modules for more specific features that are not required in all applications. In order to keep the amount of code to be compiled and the number of dependencies small, these are hidden behind feature flags through which they can be enabled if required. The flags have the same names as the modules.

Currently, there are the following modules:

  • resolv: An asynchronous DNS resolver based on the Tokio async runtime.
  • sign: Experimental support for DNSSEC signing.
  • tsig: Support for securing DNS transactions with TSIG records.
  • validate: Experimental support for DNSSEC validation.
  • zonefile: Experimental reading and writing of zone files, i.e., the textual representation of DNS data.

Finally, the dep module contains re-exports of some important dependencies to help avoid issues with multiple versions of a crate.

Reference of Feature Flags

The following is the complete list of the feature flags available.

  • bytes: Enables using the types Bytes and BytesMut from the bytes crate as octet sequences.
  • chrono: Adds the chrono crate as a dependency. This adds support for generating serial numbers from time stamps.
  • heapless: enables the use of the Vec type from the heapless crate as octet sequences.
  • interop: Activate interoperability tests that rely on other software to be installed in the system (currently NSD and dig) and will fail if it isn’t. This feature is not meaningful for users of the crate.
  • rand: Enables a number of methods that rely on a random number generator being available in the system.
  • resolv: Enables the asynchronous stub resolver via the resolv module.
  • resolv-sync: Enables the synchronous version of the stub resolver.
  • ring: Enables crypto functionality via the ring crate.
  • serde: Enables serde serialization for a number of basic types.
  • sign: basic DNSSEC signing support. This will enable the sign module and requires the std feature. Note that this will not directly enable actual signing. For that you will also need to pick a crypto module via an additional feature. Currently we only support the ring module, but support for OpenSSL is coming soon.
  • siphasher: enables the dependency on the siphasher crate which allows generating and checking hashes in standard server cookies.
  • smallvec: enables the use of the Smallvec type from the smallvec crate as octet sequences.
  • std: support for the Rust std library. This feature is enabled by default.
  • tsig: support for signing and validating message exchanges via TSIG signatures. This enables the tsig module and currently pulls in the bytes, ring, and smallvec features.
  • validate: basic DNSSEC validation support. This feature enables the validate module and currently also enables the std and ring features.
  • zonefile: reading and writing of zonefiles. This feature enables the zonefile module and currently also enables the bytes and std features.

Modules

  • Handling of DNS data.
  • Re-exports of dependencies
  • Record Data of Well-defined Record Types
  • resolvresolv
    Asynchronous DNS resolving.
  • signsign
    DNSSEC signing.
  • tsigtsig
    Support for TSIG.
  • Various utility modules.
  • validatevalidate
    DNSSEC validation.
  • zonefilezonefile
    Reading and writing of zonefiles.