[PR #767] [MERGED] upgrade trust-dns-proto to edition 2018 #1670

Closed
opened 2026-03-16 02:18:57 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/767
Author: @chunyingw
Created: 5/18/2019
Status: Merged
Merged: 5/21/2019
Merged by: @bluejekyll

Base: masterHead: upgrade/proto


📝 Commits (10+)

📊 Changes

69 files changed (+294 additions, -291 deletions)

View changed files

📝 Cargo.lock (+10 -10)
📝 crates/proto/Cargo.toml (+2 -1)
📝 crates/proto/src/error.rs (+2 -2)
📝 crates/proto/src/lib.rs (+5 -5)
📝 crates/proto/src/multicast/mdns_client_stream.rs (+5 -6)
📝 crates/proto/src/multicast/mdns_stream.rs (+4 -4)
📝 crates/proto/src/op/edns.rs (+6 -6)
📝 crates/proto/src/op/header.rs (+2 -2)
📝 crates/proto/src/op/message.rs (+4 -4)
📝 crates/proto/src/op/op_code.rs (+1 -1)
📝 crates/proto/src/op/query.rs (+5 -5)
📝 crates/proto/src/rr/dns_class.rs (+2 -2)
📝 crates/proto/src/rr/dnssec/algorithm.rs (+2 -2)
📝 crates/proto/src/rr/dnssec/digest_type.rs (+2 -2)
📝 crates/proto/src/rr/dnssec/ec_public_key.rs (+1 -1)
📝 crates/proto/src/rr/dnssec/nsec3.rs (+3 -3)
📝 crates/proto/src/rr/dnssec/public_key.rs (+6 -6)
📝 crates/proto/src/rr/dnssec/rdata/dnskey.rs (+5 -5)
📝 crates/proto/src/rr/dnssec/rdata/ds.rs (+6 -6)
📝 crates/proto/src/rr/dnssec/rdata/key.rs (+4 -4)

...and 49 more files

📄 Description

  • Upgrade trust-dns-proto to rust edition 2018
  • Remove unused "mut" in some places

🔄 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/767 **Author:** [@chunyingw](https://github.com/chunyingw) **Created:** 5/18/2019 **Status:** ✅ Merged **Merged:** 5/21/2019 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `upgrade/proto` --- ### 📝 Commits (10+) - [`2cab6af`](https://github.com/hickory-dns/hickory-dns/commit/2cab6af24f3779241ed646edf5de090742091f89) upgrade proto to edition 2018 - [`ca4f064`](https://github.com/hickory-dns/hickory-dns/commit/ca4f064a56fdc2a1da90457decc89f313ef9823e) upgrade proto to edition 2018 - [`8958ddc`](https://github.com/hickory-dns/hickory-dns/commit/8958ddc10b47188239e267004e55a64661b49a02) Merge branch 'upgrade/proto' of https://github.com/chunyingw/trust-dns into upgrade/proto - [`73aedd8`](https://github.com/hickory-dns/hickory-dns/commit/73aedd8f381d244ff3bc52790b5749b22f216dd6) Merge branch 'upgrade/proto' of https://github.com/chunyingw/trust-dns into upgrade/proto - [`ce59c39`](https://github.com/hickory-dns/hickory-dns/commit/ce59c39b9aeb5f5aa35383c38e3d1c45d54140ea) Merge branch 'upgrade/proto' of https://github.com/chunyingw/trust-dns into upgrade/proto - [`304fb92`](https://github.com/hickory-dns/hickory-dns/commit/304fb92961a63de6a12c9f9c668a24ba8dda9da6) Merge branch 'upgrade/proto' of https://github.com/chunyingw/trust-dns into upgrade/proto - [`e4b7cdd`](https://github.com/hickory-dns/hickory-dns/commit/e4b7cdd0dcc53dba2a39f441c3b4b7b0d7c08e67) Merge commit '73aedd8f' into upgrade/proto - [`d2ab3f2`](https://github.com/hickory-dns/hickory-dns/commit/d2ab3f2e3ddce706bbf6347c89f7a78e7bead028) Upgrad trust-dns-proto to rust edition 2018 - [`42b9ce6`](https://github.com/hickory-dns/hickory-dns/commit/42b9ce65af4a58db5c4335cd35caa6e7273eaf8f) Merge branch 'upgrade/proto' of https://github.com/chunyingw/trust-dns into upgrade/proto - [`50bcc41`](https://github.com/hickory-dns/hickory-dns/commit/50bcc4103952df721f90d8b0ef6bf9be4f1ec09a) Merge branch 'master' into upgrade/proto ### 📊 Changes **69 files changed** (+294 additions, -291 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+10 -10) 📝 `crates/proto/Cargo.toml` (+2 -1) 📝 `crates/proto/src/error.rs` (+2 -2) 📝 `crates/proto/src/lib.rs` (+5 -5) 📝 `crates/proto/src/multicast/mdns_client_stream.rs` (+5 -6) 📝 `crates/proto/src/multicast/mdns_stream.rs` (+4 -4) 📝 `crates/proto/src/op/edns.rs` (+6 -6) 📝 `crates/proto/src/op/header.rs` (+2 -2) 📝 `crates/proto/src/op/message.rs` (+4 -4) 📝 `crates/proto/src/op/op_code.rs` (+1 -1) 📝 `crates/proto/src/op/query.rs` (+5 -5) 📝 `crates/proto/src/rr/dns_class.rs` (+2 -2) 📝 `crates/proto/src/rr/dnssec/algorithm.rs` (+2 -2) 📝 `crates/proto/src/rr/dnssec/digest_type.rs` (+2 -2) 📝 `crates/proto/src/rr/dnssec/ec_public_key.rs` (+1 -1) 📝 `crates/proto/src/rr/dnssec/nsec3.rs` (+3 -3) 📝 `crates/proto/src/rr/dnssec/public_key.rs` (+6 -6) 📝 `crates/proto/src/rr/dnssec/rdata/dnskey.rs` (+5 -5) 📝 `crates/proto/src/rr/dnssec/rdata/ds.rs` (+6 -6) 📝 `crates/proto/src/rr/dnssec/rdata/key.rs` (+4 -4) _...and 49 more files_ </details> ### 📄 Description - Upgrade trust-dns-proto to rust edition 2018 - Remove unused "mut" in some places --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 02:18:57 +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#1670
No description provided.