mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[PR #1067] [MERGED] Async std support #1938
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#1938
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/hickory-dns/hickory-dns/pull/1067
Author: @bluejekyll
Created: 4/9/2020
Status: ✅ Merged
Merged: 4/11/2020
Merged by: @bluejekyll
Base:
master← Head:async-std-support📝 Commits (6)
634269cAdd basic support for async_std resolver23fb5bdAdd async-std support to CIb9d6a77add separate crate for AsyncStd405fbfbport over all tests804d7a9update crates.io informatione4a9059cleanup some feature based build params📊 Changes
16 files changed (+1136 additions, -90 deletions)
View changed files
📝
.github/workflows/test.yml(+5 -5)📝
CHANGELOG.md(+1 -0)📝
Cargo.lock(+227 -70)📝
Cargo.toml(+1 -0)📝
Makefile.toml(+17 -10)➕
crates/async-std-resolver/Cargo.toml(+74 -0)➕
crates/async-std-resolver/LICENSE-APACHE(+202 -0)➕
crates/async-std-resolver/LICENSE-MIT(+20 -0)➕
crates/async-std-resolver/README.md(+58 -0)➕
crates/async-std-resolver/src/lib.rs(+129 -0)➕
crates/async-std-resolver/src/net.rs(+81 -0)➕
crates/async-std-resolver/src/runtime.rs(+86 -0)➕
crates/async-std-resolver/src/tests.rs(+201 -0)➕
crates/async-std-resolver/src/time.rs(+31 -0)📝
crates/proto/src/udp/udp_stream.rs(+2 -5)📝
crates/resolver/src/async_resolver.rs(+1 -0)📄 Description
This adds async std support, but as a separate crate in an attempt to not end up with crazy feature confusion for downstream dependencies. This is based off of #1051
FYI @belak
@briansmith, I think this provides a blueprint for the way to implement resolvers for different runtimes.
Fixes: #926
Closes: #1051
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.