[PR #932] [MERGED] update to tokio 0.2 release #1800

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/932
Author: @bluejekyll
Created: 11/27/2019
Status: Merged
Merged: 12/6/2019
Merged by: @bluejekyll

Base: masterHead: update-tokio-0.2-alpha.2


📝 Commits (9)

  • 277cea5 update to tokio 0.2 release
  • 548ea60 update to h2 0.2.0
  • 26cd76f fix compilation errors
  • 9f6c73e server await JoinHandles from spawn
  • 76d4e4c fix integration tests using different Runtimes
  • 1da8ad4 cleanup named test output
  • 4edae99 fix openssl tests
  • 3594bbd cleanup code from review
  • 8ed7248 refactor server_future for JoinHandle, also fix Udp deadlock

📊 Changes

85 files changed (+1147 additions, -1524 deletions)

View changed files

📝 Cargo.lock (+328 -632)
📝 Cargo.toml (+3 -0)
📝 bin/Cargo.toml (+3 -5)
📝 bin/benches/comparison_benches.rs (+3 -4)
📝 bin/src/named.rs (+108 -108)
📝 bin/tests/named_https_tests.rs (+3 -3)
📝 bin/tests/named_openssl_tests.rs (+1 -1)
📝 bin/tests/named_rustls_tests.rs (+1 -1)
📝 bin/tests/named_test_rsa_dnssec.rs (+2 -3)
📝 bin/tests/named_tests.rs (+4 -6)
📝 bin/tests/server_harness/mod.rs (+31 -25)
📝 crates/client/Cargo.toml (+7 -9)
📝 crates/client/src/client/client.rs (+19 -28)
📝 crates/client/src/client/client_future.rs (+2 -2)
📝 crates/client/src/client/rc_future.rs (+2 -2)
📝 crates/client/src/lib.rs (+2 -2)
📝 crates/client/src/tcp/tcp_client_connection.rs (+1 -1)
📝 crates/client/src/udp/udp_client_connection.rs (+1 -1)
📝 crates/https/Cargo.toml (+7 -9)
📝 crates/https/src/https_client_stream.rs (+12 -12)

...and 65 more files

📄 Description

fixes: #931
fixes: #939

Awaiting releases for:


🔄 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/932 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 11/27/2019 **Status:** ✅ Merged **Merged:** 12/6/2019 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `update-tokio-0.2-alpha.2` --- ### 📝 Commits (9) - [`277cea5`](https://github.com/hickory-dns/hickory-dns/commit/277cea509b358bcd672483a84b3adbf8a5a5e21a) update to tokio 0.2 release - [`548ea60`](https://github.com/hickory-dns/hickory-dns/commit/548ea60caa9fa18206195600690055c96abedd86) update to h2 0.2.0 - [`26cd76f`](https://github.com/hickory-dns/hickory-dns/commit/26cd76f27b99bdd0ddd907f251ba55c0109bf327) fix compilation errors - [`9f6c73e`](https://github.com/hickory-dns/hickory-dns/commit/9f6c73ef025b8f32c679051fb420cc667528fdc6) server await JoinHandles from spawn - [`76d4e4c`](https://github.com/hickory-dns/hickory-dns/commit/76d4e4cc100f48823cd6ac8e19d303e78ef5bd34) fix integration tests using different Runtimes - [`1da8ad4`](https://github.com/hickory-dns/hickory-dns/commit/1da8ad489492009c9fa184284dac2cd88c5bc8fe) cleanup named test output - [`4edae99`](https://github.com/hickory-dns/hickory-dns/commit/4edae996b6523fc17a7ed156229b03748495d695) fix openssl tests - [`3594bbd`](https://github.com/hickory-dns/hickory-dns/commit/3594bbd94b7237e99757fafd3968a7cae863ddfe) cleanup code from review - [`8ed7248`](https://github.com/hickory-dns/hickory-dns/commit/8ed72486d00658f15b6851e45c1eabd51d90d73b) refactor server_future for JoinHandle, also fix Udp deadlock ### 📊 Changes **85 files changed** (+1147 additions, -1524 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+328 -632) 📝 `Cargo.toml` (+3 -0) 📝 `bin/Cargo.toml` (+3 -5) 📝 `bin/benches/comparison_benches.rs` (+3 -4) 📝 `bin/src/named.rs` (+108 -108) 📝 `bin/tests/named_https_tests.rs` (+3 -3) 📝 `bin/tests/named_openssl_tests.rs` (+1 -1) 📝 `bin/tests/named_rustls_tests.rs` (+1 -1) 📝 `bin/tests/named_test_rsa_dnssec.rs` (+2 -3) 📝 `bin/tests/named_tests.rs` (+4 -6) 📝 `bin/tests/server_harness/mod.rs` (+31 -25) 📝 `crates/client/Cargo.toml` (+7 -9) 📝 `crates/client/src/client/client.rs` (+19 -28) 📝 `crates/client/src/client/client_future.rs` (+2 -2) 📝 `crates/client/src/client/rc_future.rs` (+2 -2) 📝 `crates/client/src/lib.rs` (+2 -2) 📝 `crates/client/src/tcp/tcp_client_connection.rs` (+1 -1) 📝 `crates/client/src/udp/udp_client_connection.rs` (+1 -1) 📝 `crates/https/Cargo.toml` (+7 -9) 📝 `crates/https/src/https_client_stream.rs` (+12 -12) _...and 65 more files_ </details> ### 📄 Description fixes: #931 fixes: #939 Awaiting releases for: - [x] tokio-rustls, see https://github.com/quininer/tokio-rustls/pull/56 - [x] h2, see https://github.com/hyperium/h2/pull/428 - [ ] ~typed-headers, https://github.com/sfackler/typed-headers/pull/8~ (separate issue filed, #943) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 02:26:01 +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#1800
No description provided.