-
Notifications
You must be signed in to change notification settings - Fork 341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrating the net library to async-net? #969
Comments
I don't think this would be possible due to async-std's implementation of I/O traits on references. The problem is that Since async-std 2 is going to have to be released at some point anyway (for |
@Kestrer the only thread related to references in Do you have any references you could share on this? |
@yoshuawuyts The problem I was talking about was that, due to Previously I assumed that async-std would just lose wakeups here (hence my comment), but it turns out async-std does avoid that. Because One option is to remove the Edit: Ah, I see the |
In the style of #836, I noticed that async-std's net is nearly the same as https://github.com/smol-rs/async-net. Would it be worth porting async-std to use async-net?
The text was updated successfully, but these errors were encountered: