domain 0.12.0

A DNS library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Tooling for interop testing.
//!
//! This project provides the scaffolding for testing the interoperability of
//! the `domain` crate with various other DNS implementations out there.
//!
//! The actual tests live with their respective modules in a sub-module called
//! `interop`. Since they require additional software packages to be available
//! and can be expensive, they are tagged as ignored by default.
//!
#![cfg(all(feature = "bytes", feature = "std"))]

pub mod nsd;