[PR #919] [CLOSED] Minimal versions #1790

Closed
opened 2026-03-16 02:25:28 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/919
Author: @mathstuf
Created: 11/11/2019
Status: Closed

Base: release-r0.12-cs0.17Head: minimal-versions


📝 Commits (10+)

  • f8920e8 fix DnsRequestSender to take task::Context for Waker
  • 8bcfdd3 cleanup all clippy warnings
  • 6c4e08e update OpenSSL for Windows tests
  • 8b609be deny all audit warnings
  • 7d6f265 Bump backtrace from 0.3.38 to 0.3.40
  • 0f3a3e3 Add valid_until method for specific resolver lookup results
  • 0bfabbd Allow parsing DNSSEC record types
  • 10541a1 Add resolver methods for SOA and NS records
  • 03e1ff7 Bump webpki-roots from 0.17.0 to 0.18.0
  • 1d56809 Bump env_logger from 0.6.2 to 0.7.1

📊 Changes

344 files changed (+15955 additions, -12767 deletions)

View changed files

.appveyor.yml (+0 -69)
.coveralls.yml (+0 -2)
.github/workflows/publish.yml (+33 -0)
.github/workflows/test.yml (+195 -0)
📝 .gitignore (+1 -0)
📝 .rustfmt.toml (+1 -0)
.travis.yml (+0 -168)
📝 CHANGELOG.md (+401 -37)
📝 Cargo.lock (+1003 -1219)
📝 Cargo.toml (+7 -5)
Makefile.toml (+470 -0)
📝 README.md (+61 -44)
bin/Cargo.toml (+94 -0)
bin/LICENSE-APACHE (+202 -0)
bin/LICENSE-MIT (+20 -0)
bin/Makefile.toml (+32 -0)
bin/README.md (+51 -0)
📝 bin/benches/bind_conf/example.conf (+7 -7)
📝 bin/benches/comparison_benches.rs (+44 -42)
📝 bin/src/named.rs (+179 -122)

...and 80 more files

📄 Description


Needs releases of https://github.com/tokio-rs/tokio/pull/1764, https://github.com/sfackler/typed-headers/pull/6, and https://github.com/alexcrichton/socket2-rs/pull/46 first.

This also only gets trust-dns-resolver working under the -Z minimal-versions flag. More PRs will need to be filed for the other crates to also work, but I don't need them immediately and this hole is deep enough as it is :/ .


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hickory-dns/hickory-dns/pull/919 **Author:** [@mathstuf](https://github.com/mathstuf) **Created:** 11/11/2019 **Status:** ❌ Closed **Base:** `release-r0.12-cs0.17` ← **Head:** `minimal-versions` --- ### 📝 Commits (10+) - [`f8920e8`](https://github.com/hickory-dns/hickory-dns/commit/f8920e8422e305cc195c199c9fe3f118ad2cfa9a) fix DnsRequestSender to take task::Context for Waker - [`8bcfdd3`](https://github.com/hickory-dns/hickory-dns/commit/8bcfdd3c4f831f9464d4f3dabf099c18ce61b39d) cleanup all clippy warnings - [`6c4e08e`](https://github.com/hickory-dns/hickory-dns/commit/6c4e08e62384563bf4304f3e0af22477c00546ff) update OpenSSL for Windows tests - [`8b609be`](https://github.com/hickory-dns/hickory-dns/commit/8b609bed29da87c64ef9b154f33c0223e13ad57c) deny all audit warnings - [`7d6f265`](https://github.com/hickory-dns/hickory-dns/commit/7d6f265cba98e77a7667fe732960a8fdce1afdc8) Bump backtrace from 0.3.38 to 0.3.40 - [`0f3a3e3`](https://github.com/hickory-dns/hickory-dns/commit/0f3a3e3917f4712673c393a62b0d635f0f837a84) Add `valid_until` method for specific resolver lookup results - [`0bfabbd`](https://github.com/hickory-dns/hickory-dns/commit/0bfabbdbc9b2021ba5edc7300e6635eea457881d) Allow parsing DNSSEC record types - [`10541a1`](https://github.com/hickory-dns/hickory-dns/commit/10541a13ad584fc3e5338e859a94c4e5db225e78) Add resolver methods for SOA and NS records - [`03e1ff7`](https://github.com/hickory-dns/hickory-dns/commit/03e1ff720ae90d6b9f12993c4900d7185d5930a2) Bump webpki-roots from 0.17.0 to 0.18.0 - [`1d56809`](https://github.com/hickory-dns/hickory-dns/commit/1d56809e579b054c657d36057c601bc713cee702) Bump env_logger from 0.6.2 to 0.7.1 ### 📊 Changes **344 files changed** (+15955 additions, -12767 deletions) <details> <summary>View changed files</summary> ➖ `.appveyor.yml` (+0 -69) ➖ `.coveralls.yml` (+0 -2) ➕ `.github/workflows/publish.yml` (+33 -0) ➕ `.github/workflows/test.yml` (+195 -0) 📝 `.gitignore` (+1 -0) 📝 `.rustfmt.toml` (+1 -0) ➖ `.travis.yml` (+0 -168) 📝 `CHANGELOG.md` (+401 -37) 📝 `Cargo.lock` (+1003 -1219) 📝 `Cargo.toml` (+7 -5) ➕ `Makefile.toml` (+470 -0) 📝 `README.md` (+61 -44) ➕ `bin/Cargo.toml` (+94 -0) ➕ `bin/LICENSE-APACHE` (+202 -0) ➕ `bin/LICENSE-MIT` (+20 -0) ➕ `bin/Makefile.toml` (+32 -0) ➕ `bin/README.md` (+51 -0) 📝 `bin/benches/bind_conf/example.conf` (+7 -7) 📝 `bin/benches/comparison_benches.rs` (+44 -42) 📝 `bin/src/named.rs` (+179 -122) _...and 80 more files_ </details> ### 📄 Description --- Needs releases of https://github.com/tokio-rs/tokio/pull/1764, https://github.com/sfackler/typed-headers/pull/6, and https://github.com/alexcrichton/socket2-rs/pull/46 first. This also only gets `trust-dns-resolver` working under the `-Z minimal-versions` flag. More PRs will need to be filed for the other crates to also work, but I don't need them immediately and this hole is deep enough as it is :/ . --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 02:25:28 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hickory-dns#1790
No description provided.