[PR #2028] [MERGED] Update dependencies (avoid vulnerability), optional TOML, remove unused dependencies #2766

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/2028
Author: @djc
Created: 9/18/2023
Status: Merged
Merged: 9/26/2023
Merged by: @bluejekyll

Base: mainHead: server-toml


📝 Commits (10+)

  • 3940a1b add MSRV env-var to justfile for testing
  • cf84b9b update certs for server https/quic tests
  • 15368ca server: simplify Config TOML API
  • f52c8ec server: make TOML dependency optional
  • 0a39970 Clean up unused dependencies
  • 72c1ee3 server: switch to basic-toml
  • 2875fe9 Update semver-compatible dependencies
  • 78c0fa3 Avoid deprecated rustls API
  • 42d3597 Bump MSRV to 1.67 (for time)
  • aee9d23 util: clarify internal structure

📊 Changes

42 files changed (+629 additions, -616 deletions)

View changed files

📝 .github/workflows/test.yml (+1 -1)
📝 Cargo.lock (+490 -451)
📝 Cargo.toml (+3 -3)
📝 README.md (+5 -5)
📝 bin/Cargo.toml (+2 -2)
📝 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)
📝 crates/server/Cargo.toml (+3 -2)

...and 22 more files

📄 Description

Also clean up unused dependencies (as found by cargo udeps) and switch from the toml crate to basic-toml, which needs fewer dependencies.


🔄 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/2028 **Author:** [@djc](https://github.com/djc) **Created:** 9/18/2023 **Status:** ✅ Merged **Merged:** 9/26/2023 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `main` ← **Head:** `server-toml` --- ### 📝 Commits (10+) - [`3940a1b`](https://github.com/hickory-dns/hickory-dns/commit/3940a1b601072556a59068de0ed5ad327e3e284b) add MSRV env-var to justfile for testing - [`cf84b9b`](https://github.com/hickory-dns/hickory-dns/commit/cf84b9b225a5474aa2916a5ee60506dda2ad55ba) update certs for server https/quic tests - [`15368ca`](https://github.com/hickory-dns/hickory-dns/commit/15368ca0c1bbee3c3e009d6ed526480ef33b73e4) server: simplify Config TOML API - [`f52c8ec`](https://github.com/hickory-dns/hickory-dns/commit/f52c8ecfc2197f2823e2e162d504326e5308fbb3) server: make TOML dependency optional - [`0a39970`](https://github.com/hickory-dns/hickory-dns/commit/0a399701f9acaf41004f6dd587a66eddffcd2c72) Clean up unused dependencies - [`72c1ee3`](https://github.com/hickory-dns/hickory-dns/commit/72c1ee335ff19309c63bf31356e503666e247c4c) server: switch to basic-toml - [`2875fe9`](https://github.com/hickory-dns/hickory-dns/commit/2875fe9093e4d77fbe2f22f464eacdb5b85ed209) Update semver-compatible dependencies - [`78c0fa3`](https://github.com/hickory-dns/hickory-dns/commit/78c0fa3db05b1b130482fe22a3200d34550d6776) Avoid deprecated rustls API - [`42d3597`](https://github.com/hickory-dns/hickory-dns/commit/42d3597479942cbb3a4405d5f6726bfbabe63c16) Bump MSRV to 1.67 (for time) - [`aee9d23`](https://github.com/hickory-dns/hickory-dns/commit/aee9d23100f951ec9cc5ab58e790cf918ca71114) util: clarify internal structure ### 📊 Changes **42 files changed** (+629 additions, -616 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/test.yml` (+1 -1) 📝 `Cargo.lock` (+490 -451) 📝 `Cargo.toml` (+3 -3) 📝 `README.md` (+5 -5) 📝 `bin/Cargo.toml` (+2 -2) 📝 `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) 📝 `crates/server/Cargo.toml` (+3 -2) _...and 22 more files_ </details> ### 📄 Description Also clean up unused dependencies (as found by `cargo udeps`) and switch from the toml crate to basic-toml, which needs fewer dependencies. --- <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:06 +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#2766
No description provided.