3 releases (breaking)
0.3.0 | Nov 13, 2021 |
---|---|
0.2.0 | Nov 13, 2021 |
0.1.0 | Nov 13, 2021 |
#11 in #doh
11KB
174 lines
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<Dns> {
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
}
License
lib.rs
:
google-dns-rs
google-dns-rs is a third party Google DNS client for rust.
use google_dns_rs::api::{Dns, DoH, Result};
async fn github_dns_records() -> Result<Dns> {
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
}
Dependencies
~6.5MB
~212K SLoC