3个版本
0.1.2 | 2024年4月18日 |
---|---|
0.1.1 | 2024年4月17日 |
0.1.0 | 2024年4月16日 |
#1215 在 网络编程
每月240次下载
36KB
860 代码行
dns-update
dns-update 是一个用于Rust的 动态DNS更新库,支持使用 RFC 2136 协议和诸如 Cloudflare 之类的不同云提供商API更新DNS记录。它旨在简单易用,同时提供高灵活性和性能。
限制
- 目前库仅支持异步操作。
- 除了RFC 2136之外,它仅支持Cloudflare的API。
欢迎Pull Request
欢迎添加更多提供商的Pull Request。目标是支持尽可能多的提供商,类似于Go的 lego 库。
使用示例
使用RFC2136与TSIG
// Create a new RFC2136 client
let client = Rfc2136Provider::new_tsig("tcp://127.0.0.1:53", "<KEY_NAME>", STANDARD.decode("<TSIG_KEY>").unwrap(), TsigAlgorithm::HmacSha512).unwrap();
// Create a new TXT record
c.create(
"test._domainkey.example.org",
DnsRecord::TXT {
content: "v=DKIM1; k=rsa; h=sha256; p=test".to_string(),
},
300,
"example.org",
)
.await
.unwrap();
// Delete the record
c.delete("test._domainkey.example.org", "example.org").await.unwrap();
使用Cloudflare的API
// Create a new Cloudflare client
let client =
DnsUpdater::new_cloudflare("<API_TOKEN>", None::<String>)
.unwrap();
// Create a new TXT record
c.create(
"test._domainkey.example.org",
DnsRecord::TXT {
content: "v=DKIM1; k=rsa; h=sha256; p=test".to_string(),
},
300,
"example.org",
)
.await
.unwrap();
// Delete the record
c.delete("test._domainkey.example.org", "example.org").await.unwrap();
许可证
根据您的选择许可
- Apache License,版本2.0 (LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT许可证 (LICENSE-MIT 或 https://open-source.org.cn/licenses/MIT)
。
版权
版权(C)2020-2024,Stalwart Labs Ltd.
依赖关系
~16–28MB
~530K SLoC