A DNS library for Rust – Core.
This crate contains the core types and functionality for processing DNS data. Resolvers, name servers, and more will be provided by additional crates.
First, add this to your Cargo.toml
:
toml
[dependencies]
domain-core = "0.3"
Then, add this to your crate root:
rust
extern crate domain_core;
Eventually, this crate will provide the following functions:
[ ] DNS data handling
[X] Basic types.
[ ] Implementations for all IANA-registered record types.
[X] Wire-format parsing and constructing.
[ ] Master format parsing and constructing.
[ ] DNSSEC signing
[ ] DNSSEC validation
If you have comments, proposed changes, or would like to contribute, please open an issue.
domain-core
is distributed under the terms of the BSD-3-clause license.
See LICENSE for details.