google-dns-rs
Install
Add the following line to your Cargo.toml file:
google-dns-rs = "0.3.0"
Usage
use google_dns_rs::api::{Dns, DoH, Result};
async fn github_dns_records() -> Result
{
DoH
::
new(
"github.com".
to_string())
// .set_type(2) // NS record type
// .set_cd(true) // disable or enable DNSSEC check
// .set_ct("application/x-javascript".to_string()) // content type
// .set_do(true) // include DNSSEC recods
.
resolve()
.
await
}