3 个版本 (重大更新)
0.3.0 | 2021 年 11 月 13 日 |
---|---|
0.2.0 | 2021 年 11 月 13 日 |
0.1.0 | 2021 年 11 月 13 日 |
#11 in #doh
11KB
174 代码行
google-dns-rs
安装
将以下行添加到您的 Cargo.toml 文件中
google-dns-rs = "0.3.0"
用法
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
}
许可证
lib.rs
:
google-dns-rs
google-dns-rs 是一个用于 Rust 的第三方 Google DNS 客户端。
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
}
依赖项
~6.5MB
~212K SLoC