[PR #849] [MERGED] std::future preview #1738

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/849
Author: @bluejekyll
Created: 8/15/2019
Status: Merged
Merged: 10/18/2019
Merged by: @bluejekyll

Base: masterHead: std-future-preview


📝 Commits (10+)

  • 98461b7 update proto to new std::future
  • a4e69d7 update resolver to new std::future
  • e041b1a update client to new std::future
  • 9dbc320 update native-tls to new std::future
  • 5c43669 update server to new std::future
  • 6e907f1 udpate rustls to new std::future
  • c873e6a udpate openssl to new std::future
  • 91b12d8 update https to new std::future
  • 1f25dc7 update all crates for tls features with std::future
  • 1c5d3a4 update integration tests to new std::future

📊 Changes

196 files changed (+5770 additions, -5724 deletions)

View changed files

📝 .appveyor.yml (+3 -3)
📝 .travis.yml (+14 -25)
📝 CHANGELOG.md (+285 -37)
📝 Cargo.lock (+478 -518)
📝 crates/client/Cargo.toml (+9 -8)
📝 crates/client/benches/lower_name_benches.rs (+0 -1)
📝 crates/client/src/client/client.rs (+12 -12)
📝 crates/client/src/client/client_connection.rs (+4 -4)
📝 crates/client/src/client/client_future.rs (+50 -47)
📝 crates/client/src/client/memoize_client_handle.rs (+75 -43)
📝 crates/client/src/client/rc_future.rs (+66 -60)
📝 crates/client/src/error/client_error.rs (+4 -4)
📝 crates/client/src/error/dnssec_error.rs (+1 -1)
📝 crates/client/src/error/parse_error.rs (+3 -2)
📝 crates/client/src/https_client_connection.rs (+2 -2)
📝 crates/client/src/lib.rs (+3 -5)
📝 crates/client/src/multicast/mdns_client_connection.rs (+3 -5)
📝 crates/client/src/multicast/mod.rs (+1 -1)
📝 crates/client/src/op/lower_query.rs (+3 -3)
📝 crates/client/src/op/mod.rs (+3 -2)

...and 80 more files

📄 Description

I was hoping this could be done without pulling a dependency on async/await, but no such luck. There are some complex areas that make this painful.


🔄 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/849 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 8/15/2019 **Status:** ✅ Merged **Merged:** 10/18/2019 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `std-future-preview` --- ### 📝 Commits (10+) - [`98461b7`](https://github.com/hickory-dns/hickory-dns/commit/98461b71c970a045d4a55a7818c2386ba2fe0a36) update proto to new std::future - [`a4e69d7`](https://github.com/hickory-dns/hickory-dns/commit/a4e69d7d01664ad3bac2ab72ec4613261422c82c) update resolver to new std::future - [`e041b1a`](https://github.com/hickory-dns/hickory-dns/commit/e041b1a1db01fe6433d5f0ec4cd2042b31440d38) update client to new std::future - [`9dbc320`](https://github.com/hickory-dns/hickory-dns/commit/9dbc320fc5403ad90a2668e910d26ff21a483282) update native-tls to new std::future - [`5c43669`](https://github.com/hickory-dns/hickory-dns/commit/5c43669071054961abf9327cfc1691d3df361959) update server to new std::future - [`6e907f1`](https://github.com/hickory-dns/hickory-dns/commit/6e907f1d72b5c6df02a2fde9132326dc28f0f7f4) udpate rustls to new std::future - [`c873e6a`](https://github.com/hickory-dns/hickory-dns/commit/c873e6acc2de38937533222930e94ad4d9ec593e) udpate openssl to new std::future - [`91b12d8`](https://github.com/hickory-dns/hickory-dns/commit/91b12d821ee5ce9dcd4a4549c455c685fe674c06) update https to new std::future - [`1f25dc7`](https://github.com/hickory-dns/hickory-dns/commit/1f25dc7246e360d8ffd743fc1cacae557b3e3250) update all crates for tls features with std::future - [`1c5d3a4`](https://github.com/hickory-dns/hickory-dns/commit/1c5d3a49f17f5ffdac6760cf3511987e4ea7f932) update integration tests to new std::future ### 📊 Changes **196 files changed** (+5770 additions, -5724 deletions) <details> <summary>View changed files</summary> 📝 `.appveyor.yml` (+3 -3) 📝 `.travis.yml` (+14 -25) 📝 `CHANGELOG.md` (+285 -37) 📝 `Cargo.lock` (+478 -518) 📝 `crates/client/Cargo.toml` (+9 -8) 📝 `crates/client/benches/lower_name_benches.rs` (+0 -1) 📝 `crates/client/src/client/client.rs` (+12 -12) 📝 `crates/client/src/client/client_connection.rs` (+4 -4) 📝 `crates/client/src/client/client_future.rs` (+50 -47) 📝 `crates/client/src/client/memoize_client_handle.rs` (+75 -43) 📝 `crates/client/src/client/rc_future.rs` (+66 -60) 📝 `crates/client/src/error/client_error.rs` (+4 -4) 📝 `crates/client/src/error/dnssec_error.rs` (+1 -1) 📝 `crates/client/src/error/parse_error.rs` (+3 -2) 📝 `crates/client/src/https_client_connection.rs` (+2 -2) 📝 `crates/client/src/lib.rs` (+3 -5) 📝 `crates/client/src/multicast/mdns_client_connection.rs` (+3 -5) 📝 `crates/client/src/multicast/mod.rs` (+1 -1) 📝 `crates/client/src/op/lower_query.rs` (+3 -3) 📝 `crates/client/src/op/mod.rs` (+3 -2) _...and 80 more files_ </details> ### 📄 Description I was hoping this could be done without pulling a dependency on async/await, but no such luck. There are some complex areas that make this painful. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 02:22:45 +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#1738
No description provided.