[PR #2787] [MERGED] Move async-std support into crates #3317

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

📋 Pull Request Information

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

Base: mainHead: async-resolver


📝 Commits (5)

  • 1865395 proto: provide async-std runtime provider
  • d8cb7c0 resolver: add direct async-std implementation
  • c2dac33 Remove async-std-resolver crate
  • eace05a resolver: privatize public testing API
  • bfa8104 ci: test async-std

📊 Changes

20 files changed (+456 additions, -1025 deletions)

View changed files

📝 .github/workflows/test.yml (+1 -0)
📝 Cargo.lock (+3 -61)
📝 Cargo.toml (+0 -1)
crates/async-std-resolver/Cargo.toml (+0 -52)
crates/async-std-resolver/LICENSE-APACHE (+0 -202)
crates/async-std-resolver/LICENSE-MIT (+0 -20)
crates/async-std-resolver/README.md (+0 -59)
crates/async-std-resolver/src/lib.rs (+0 -131)
crates/async-std-resolver/src/net.rs (+0 -117)
crates/async-std-resolver/src/runtime.rs (+0 -168)
crates/async-std-resolver/src/tests.rs (+0 -158)
crates/async-std-resolver/src/time.rs (+0 -32)
📝 crates/proto/Cargo.toml (+3 -0)
crates/proto/src/async_std.rs (+242 -0)
📝 crates/proto/src/lib.rs (+2 -0)
📝 crates/resolver/Cargo.toml (+2 -1)
crates/resolver/src/async_std.rs (+178 -0)
📝 crates/resolver/src/lib.rs (+2 -2)
📝 crates/resolver/src/resolver.rs (+20 -21)
📝 justfile (+3 -0)

📄 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/2787 **Author:** [@djc](https://github.com/djc) **Created:** 2/18/2025 **Status:** ✅ Merged **Merged:** 2/19/2025 **Merged by:** [@djc](https://github.com/djc) **Base:** `main` ← **Head:** `async-resolver` --- ### 📝 Commits (5) - [`1865395`](https://github.com/hickory-dns/hickory-dns/commit/1865395ca4e7bc709b92bf0d8113ec263756155b) proto: provide async-std runtime provider - [`d8cb7c0`](https://github.com/hickory-dns/hickory-dns/commit/d8cb7c06022b05cbee60c8adb205f75fb03c3996) resolver: add direct async-std implementation - [`c2dac33`](https://github.com/hickory-dns/hickory-dns/commit/c2dac336d730d999a69e1715cc7cd984910fc34a) Remove async-std-resolver crate - [`eace05a`](https://github.com/hickory-dns/hickory-dns/commit/eace05a0229f6b8bc93b963af8560c99d6a79d74) resolver: privatize public testing API - [`bfa8104`](https://github.com/hickory-dns/hickory-dns/commit/bfa81045ef54b8688888ed1256a62b3886b8f1f8) ci: test async-std ### 📊 Changes **20 files changed** (+456 additions, -1025 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/test.yml` (+1 -0) 📝 `Cargo.lock` (+3 -61) 📝 `Cargo.toml` (+0 -1) ➖ `crates/async-std-resolver/Cargo.toml` (+0 -52) ➖ `crates/async-std-resolver/LICENSE-APACHE` (+0 -202) ➖ `crates/async-std-resolver/LICENSE-MIT` (+0 -20) ➖ `crates/async-std-resolver/README.md` (+0 -59) ➖ `crates/async-std-resolver/src/lib.rs` (+0 -131) ➖ `crates/async-std-resolver/src/net.rs` (+0 -117) ➖ `crates/async-std-resolver/src/runtime.rs` (+0 -168) ➖ `crates/async-std-resolver/src/tests.rs` (+0 -158) ➖ `crates/async-std-resolver/src/time.rs` (+0 -32) 📝 `crates/proto/Cargo.toml` (+3 -0) ➕ `crates/proto/src/async_std.rs` (+242 -0) 📝 `crates/proto/src/lib.rs` (+2 -0) 📝 `crates/resolver/Cargo.toml` (+2 -1) ➕ `crates/resolver/src/async_std.rs` (+178 -0) 📝 `crates/resolver/src/lib.rs` (+2 -2) 📝 `crates/resolver/src/resolver.rs` (+20 -21) 📝 `justfile` (+3 -0) </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:07 +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#3317
No description provided.