[PR #2039] [CLOSED] Use just for server toml #2779

Closed
opened 2026-03-16 11:07:39 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/2039
Author: @bluejekyll
Created: 9/24/2023
Status: Closed

Base: mainHead: use-just-for-server-toml


📝 Commits (10+)

  • c6a2bf4 server: simplify Config TOML API
  • c67580d server: make TOML dependency optional
  • 1866682 Clean up unused dependencies
  • 4873fb4 server: switch to basic-toml
  • 61b6054 Update semver-compatible dependencies
  • dfaf9e5 Avoid deprecated rustls API
  • 39ec0a4 Bump MSRV to 1.67 (for time)
  • abfddbc util: clarify internal structure
  • 26eda52 Split MSRV testing for libraries and binaries
  • 9f597e4 use just for the MSRV target

📊 Changes

43 files changed (+792 additions, -695 deletions)

View changed files

📝 .github/workflows/test.yml (+24 -1)
📝 CHANGELOG.md (+77 -77)
📝 Cargo.lock (+441 -433)
📝 Cargo.toml (+3 -3)
📝 README.md (+5 -5)
📝 bin/Cargo.toml (+54 -11)
📝 bin/README.md (+5 -5)
📝 bin/src/trust-dns.rs (+3 -3)
📝 bin/tests/named_https_tests.rs (+1 -1)
📝 bin/tests/named_quic_tests.rs (+1 -1)
📝 crates/async-std-resolver/README.md (+1 -1)
📝 crates/client/README.md (+1 -1)
📝 crates/proto/Cargo.toml (+0 -1)
📝 crates/proto/README.md (+1 -1)
📝 crates/proto/src/https/https_client_stream.rs (+1 -1)
📝 crates/proto/src/quic/quic_client_stream.rs (+1 -1)
📝 crates/recursor/Cargo.toml (+0 -2)
📝 crates/recursor/README.md (+1 -1)
📝 crates/resolver/README.md (+1 -1)
📝 crates/resolver/src/tls/dns_over_rustls.rs (+1 -1)

...and 23 more files

📄 Description

@djc, this has all your changes, I just changed the MSRV test target

closes: #2028


🔄 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/2039 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 9/24/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `use-just-for-server-toml` --- ### 📝 Commits (10+) - [`c6a2bf4`](https://github.com/hickory-dns/hickory-dns/commit/c6a2bf46c9bf48bf1f597a365d6b1c5dcf295081) server: simplify Config TOML API - [`c67580d`](https://github.com/hickory-dns/hickory-dns/commit/c67580d99486c3493846132bd2e42d6d585806f8) server: make TOML dependency optional - [`1866682`](https://github.com/hickory-dns/hickory-dns/commit/1866682e19438cbdbfb0079cce7902ad2df37faa) Clean up unused dependencies - [`4873fb4`](https://github.com/hickory-dns/hickory-dns/commit/4873fb42bfa3b78863246ee02a5bbbe6020ae299) server: switch to basic-toml - [`61b6054`](https://github.com/hickory-dns/hickory-dns/commit/61b6054dfb0531c17e8541856dc38f745b6fed6b) Update semver-compatible dependencies - [`dfaf9e5`](https://github.com/hickory-dns/hickory-dns/commit/dfaf9e5b8a8093b01721edb5d5123e75c44ec968) Avoid deprecated rustls API - [`39ec0a4`](https://github.com/hickory-dns/hickory-dns/commit/39ec0a4b026f90908697505ff50035a83eb745ab) Bump MSRV to 1.67 (for time) - [`abfddbc`](https://github.com/hickory-dns/hickory-dns/commit/abfddbc93041afc258d793a89abddf9c4113d5fc) util: clarify internal structure - [`26eda52`](https://github.com/hickory-dns/hickory-dns/commit/26eda52b1676b5659774186c149a7c517e701dba) Split MSRV testing for libraries and binaries - [`9f597e4`](https://github.com/hickory-dns/hickory-dns/commit/9f597e4c8b45ddb95ec8ec7734386dd7ad30c6c0) use just for the MSRV target ### 📊 Changes **43 files changed** (+792 additions, -695 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/test.yml` (+24 -1) 📝 `CHANGELOG.md` (+77 -77) 📝 `Cargo.lock` (+441 -433) 📝 `Cargo.toml` (+3 -3) 📝 `README.md` (+5 -5) 📝 `bin/Cargo.toml` (+54 -11) 📝 `bin/README.md` (+5 -5) 📝 `bin/src/trust-dns.rs` (+3 -3) 📝 `bin/tests/named_https_tests.rs` (+1 -1) 📝 `bin/tests/named_quic_tests.rs` (+1 -1) 📝 `crates/async-std-resolver/README.md` (+1 -1) 📝 `crates/client/README.md` (+1 -1) 📝 `crates/proto/Cargo.toml` (+0 -1) 📝 `crates/proto/README.md` (+1 -1) 📝 `crates/proto/src/https/https_client_stream.rs` (+1 -1) 📝 `crates/proto/src/quic/quic_client_stream.rs` (+1 -1) 📝 `crates/recursor/Cargo.toml` (+0 -2) 📝 `crates/recursor/README.md` (+1 -1) 📝 `crates/resolver/README.md` (+1 -1) 📝 `crates/resolver/src/tls/dns_over_rustls.rs` (+1 -1) _...and 23 more files_ </details> ### 📄 Description @djc, this has all your changes, I just changed the MSRV test target closes: #2028 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 11:07:39 +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#2779
No description provided.