Conversation
Change this crate's tokio::UnixStream and tokio::UnixListener to wrap the net::UnixStream and net::UnixListener in the tokio (crate) AsyncFd and then use the AsyncFd to implement AsyncRead and AsyncWrite. This cuts out the use of the mio module in the tokio module of this crate.
The increase is required by the upgrade to tokio 1.0.0. The increase in the MRSV removes the need for the "Patch Dependencies" step in the ci workflow. Fixes: #1 BREAKING CHANGE: increase the MRSV to 1.45.0 This change will require upgrading old compilers to at least 1.45.0.
Member
|
🎉 This PR is included in version 1.0.0-beta.3 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Upgrades the dependency on
tokioto the stable 1.0.0 version. This necessitates changing thetokio::UnixStreamandtokio::UnixListenerimplementations in this crate to use theAsyncFdtype from thetokiocrate. Thetokiosupport in this crate no longer depends onmio.