[PR #2802] [MERGED] Enable TLS with aws-lc-rs #3334

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/2802
Author: @djc
Created: 2/25/2025
Status: Merged
Merged: 2/25/2025
Merged by: @djc

Base: mainHead: tls-aws-lc-rs


📝 Commits (10+)

  • 39ace4f Make protocol features more consistent
  • 3e5c862 proto: remove redundant tokio-runtime dependencies
  • 941ca02 proto: remove redundant quinn dependency
  • 375025c recursor: remove deprecated feature
  • 6a22e7c client: stop enabling dnssec-ring via dns-over-rustls
  • 8c47c58 Group tokio-rustls with cryptography features
  • 5e4714b client: remove unused direct dependency on rustls
  • d491697 client: simplify protocol features
  • dc8e7b5 proto: forward ring feature via tokio-rustls
  • c2350a5 Enable QUIC when H3 is enabled

📊 Changes

43 files changed (+559 additions, -426 deletions)

View changed files

📝 .github/workflows/test.yml (+8 -4)
📝 Cargo.lock (+3 -1)
📝 Cargo.toml (+2 -6)
📝 bin/Cargo.toml (+15 -4)
📝 bin/src/hickory-dns.rs (+15 -19)
📝 bin/src/lib.rs (+9 -8)
📝 bin/tests/integration/config_tests.rs (+5 -9)
📝 bin/tests/integration/named_https_tests.rs (+7 -7)
📝 bin/tests/integration/named_quic_tests.rs (+7 -7)
📝 bin/tests/integration/named_rustls_tests.rs (+7 -9)
📝 bin/tests/integration/server_harness/mod.rs (+6 -6)
📝 conformance/packages/dns-test/src/docker/hickory.Dockerfile (+1 -1)
📝 crates/client/Cargo.toml (+10 -13)
📝 crates/proto/Cargo.toml (+17 -16)
📝 crates/proto/src/error.rs (+20 -20)
📝 crates/proto/src/h3/h3_server.rs (+6 -8)
📝 crates/proto/src/http/error.rs (+4 -4)
📝 crates/proto/src/http/mod.rs (+4 -4)
📝 crates/proto/src/http/request.rs (+4 -4)
📝 crates/proto/src/lib.rs (+5 -5)

...and 23 more files

📄 Description

No description provided


🔄 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/2802 **Author:** [@djc](https://github.com/djc) **Created:** 2/25/2025 **Status:** ✅ Merged **Merged:** 2/25/2025 **Merged by:** [@djc](https://github.com/djc) **Base:** `main` ← **Head:** `tls-aws-lc-rs` --- ### 📝 Commits (10+) - [`39ace4f`](https://github.com/hickory-dns/hickory-dns/commit/39ace4f6076ca2d67b571f7f474b82978a366499) Make protocol features more consistent - [`3e5c862`](https://github.com/hickory-dns/hickory-dns/commit/3e5c862a15ea09fe9f9f5cee16be94b666e9dbe3) proto: remove redundant tokio-runtime dependencies - [`941ca02`](https://github.com/hickory-dns/hickory-dns/commit/941ca023834ab683a0f9113ec75ce93cb34ffa4e) proto: remove redundant quinn dependency - [`375025c`](https://github.com/hickory-dns/hickory-dns/commit/375025c4349cccd7f67af7c4c1b1acf0775b4d9d) recursor: remove deprecated feature - [`6a22e7c`](https://github.com/hickory-dns/hickory-dns/commit/6a22e7c73c05772623746c37cda2bdf69fbb803c) client: stop enabling dnssec-ring via dns-over-rustls - [`8c47c58`](https://github.com/hickory-dns/hickory-dns/commit/8c47c586eefd2da0e853ffb3a0ed348cc36ceb6e) Group tokio-rustls with cryptography features - [`5e4714b`](https://github.com/hickory-dns/hickory-dns/commit/5e4714b9c970b33d721201c612119de9da794bd8) client: remove unused direct dependency on rustls - [`d491697`](https://github.com/hickory-dns/hickory-dns/commit/d491697945784ec900c5cb846f29378ba289b3c6) client: simplify protocol features - [`dc8e7b5`](https://github.com/hickory-dns/hickory-dns/commit/dc8e7b5be186df5d15d19d39192ffd3f643c4b60) proto: forward ring feature via tokio-rustls - [`c2350a5`](https://github.com/hickory-dns/hickory-dns/commit/c2350a51b86975a4b702cfbf3612b0b45d32cd85) Enable QUIC when H3 is enabled ### 📊 Changes **43 files changed** (+559 additions, -426 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/test.yml` (+8 -4) 📝 `Cargo.lock` (+3 -1) 📝 `Cargo.toml` (+2 -6) 📝 `bin/Cargo.toml` (+15 -4) 📝 `bin/src/hickory-dns.rs` (+15 -19) 📝 `bin/src/lib.rs` (+9 -8) 📝 `bin/tests/integration/config_tests.rs` (+5 -9) 📝 `bin/tests/integration/named_https_tests.rs` (+7 -7) 📝 `bin/tests/integration/named_quic_tests.rs` (+7 -7) 📝 `bin/tests/integration/named_rustls_tests.rs` (+7 -9) 📝 `bin/tests/integration/server_harness/mod.rs` (+6 -6) 📝 `conformance/packages/dns-test/src/docker/hickory.Dockerfile` (+1 -1) 📝 `crates/client/Cargo.toml` (+10 -13) 📝 `crates/proto/Cargo.toml` (+17 -16) 📝 `crates/proto/src/error.rs` (+20 -20) 📝 `crates/proto/src/h3/h3_server.rs` (+6 -8) 📝 `crates/proto/src/http/error.rs` (+4 -4) 📝 `crates/proto/src/http/mod.rs` (+4 -4) 📝 `crates/proto/src/http/request.rs` (+4 -4) 📝 `crates/proto/src/lib.rs` (+5 -5) _...and 23 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 11:37:56 +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#3334
No description provided.