[PR #2217] [MERGED] Upgrade to rustls 0.23, quinn 0.11, etc #2885

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/2217
Author: @djc
Created: 5/21/2024
Status: Merged
Merged: 7/26/2024
Merged by: @bluejekyll

Base: mainHead: rustls-0.23


📝 Commits (1)

  • c257f24 Upgrade to rustls 0.23, quinn 0.11, etc

📊 Changes

38 files changed (+456 additions, -629 deletions)

View changed files

📝 Cargo.lock (+64 -72)
📝 Cargo.toml (+9 -8)
📝 bin/tests/named_https_tests.rs (+12 -23)
📝 bin/tests/named_quic_tests.rs (+11 -21)
📝 bin/tests/named_rustls_tests.rs (+11 -11)
📝 crates/async-std-resolver/src/net.rs (+1 -7)
📝 crates/async-std-resolver/src/runtime.rs (+2 -1)
📝 crates/client/src/h2_client_connection.rs (+5 -14)
📝 crates/proto/Cargo.toml (+6 -4)
📝 crates/proto/src/error.rs (+14 -0)
📝 crates/proto/src/h2/h2_client_stream.rs (+11 -17)
📝 crates/proto/src/h3/h3_client_stream.rs (+14 -24)
📝 crates/proto/src/h3/h3_server.rs (+17 -13)
📝 crates/proto/src/quic/mod.rs (+0 -2)
📝 crates/proto/src/quic/quic_client_stream.rs (+23 -38)
📝 crates/proto/src/quic/quic_server.rs (+17 -13)
crates/proto/src/quic/quic_socket.rs (+0 -113)
📝 crates/proto/src/quic/quic_stream.rs (+1 -1)
📝 crates/proto/src/quic/tests.rs (+10 -8)
📝 crates/proto/src/rustls/tests.rs (+10 -6)

...and 18 more files

📄 Description

Supersedes #2107, see also #2206.

This does not yet abstract over crypto providers -- for now, it hardcodes the use of the ring CryptoProvider, so we can enable aws-lc-rs support in a future PR.


🔄 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/2217 **Author:** [@djc](https://github.com/djc) **Created:** 5/21/2024 **Status:** ✅ Merged **Merged:** 7/26/2024 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `main` ← **Head:** `rustls-0.23` --- ### 📝 Commits (1) - [`c257f24`](https://github.com/hickory-dns/hickory-dns/commit/c257f249d329e89539462ad7f8f0b77ed156adb6) Upgrade to rustls 0.23, quinn 0.11, etc ### 📊 Changes **38 files changed** (+456 additions, -629 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+64 -72) 📝 `Cargo.toml` (+9 -8) 📝 `bin/tests/named_https_tests.rs` (+12 -23) 📝 `bin/tests/named_quic_tests.rs` (+11 -21) 📝 `bin/tests/named_rustls_tests.rs` (+11 -11) 📝 `crates/async-std-resolver/src/net.rs` (+1 -7) 📝 `crates/async-std-resolver/src/runtime.rs` (+2 -1) 📝 `crates/client/src/h2_client_connection.rs` (+5 -14) 📝 `crates/proto/Cargo.toml` (+6 -4) 📝 `crates/proto/src/error.rs` (+14 -0) 📝 `crates/proto/src/h2/h2_client_stream.rs` (+11 -17) 📝 `crates/proto/src/h3/h3_client_stream.rs` (+14 -24) 📝 `crates/proto/src/h3/h3_server.rs` (+17 -13) 📝 `crates/proto/src/quic/mod.rs` (+0 -2) 📝 `crates/proto/src/quic/quic_client_stream.rs` (+23 -38) 📝 `crates/proto/src/quic/quic_server.rs` (+17 -13) ➖ `crates/proto/src/quic/quic_socket.rs` (+0 -113) 📝 `crates/proto/src/quic/quic_stream.rs` (+1 -1) 📝 `crates/proto/src/quic/tests.rs` (+10 -8) 📝 `crates/proto/src/rustls/tests.rs` (+10 -6) _...and 18 more files_ </details> ### 📄 Description Supersedes #2107, see also #2206. This does not yet abstract over crypto providers -- for now, it hardcodes the use of the ring `CryptoProvider`, so we can enable aws-lc-rs support in a future PR. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 11:13:37 +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#2885
No description provided.