mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[GH-ISSUE #3221] RFC: redraw crate lines #1156
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#1156
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?
Originally created by @djc on GitHub (Aug 19, 2025).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/3221
I've been thinking some reorganization of our crates is in order. Here's my proposal:
proto::xferstuff. I don't think it really makes sense on its own.What do people think?
@djc commented on GitHub (Aug 28, 2025):
@cpu @marcus0x62 @bluejekyll opinions? ("No" is also a valid answer.)
@cpu commented on GitHub (Aug 28, 2025):
This makes sense to me. I'm supportive 👍
I have less of an opinion here, but it sounds like a reasonable proposal if it doesn't increase the dep. surface of the
-netcrate.@marcus0x62 commented on GitHub (Aug 30, 2025):
Moving networking/IO code out to a new crate makes sense to me.
I'm less convinced about moving hickory-client into proto though - maybe move client into resolver (or, although it would have a bigger blast radius, move resolver into client.) I think there's an argument for having the different client interfaces (the low level query interface in client, the stub resolver in resolver and the recursive lookup implementation in recursor exposed as different client interfaces in the client crate.
@djc commented on GitHub (Aug 30, 2025):
No, sorry -- the client would move along with the net stuff.
@marcus0x62 commented on GitHub (Aug 30, 2025):
Sorry I misread that - that makes sense to me.
@bluejekyll commented on GitHub (Aug 30, 2025):
This makes sense, I like the idea of pulling all the network related stuff into this new crate. It might be a little challenging to pull these things apart though.