-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Deprecate async_std
support
#5935
Comments
Copying over @dariusc93 comment from #3515 (comment):
|
Copying over @jxs comment from #3515 (comment):
|
So that means we would remove the abstractions that support different runtimes, or would we keep those in place? |
I would like to keep the abstraction layer to make it easier for users who wants to make an adapter, but not very strongly. Rust has zero-cost abstractions right? There won't be additional cost in runtime with no dynamic dispatch, but silghtly more code for us to maintain. |
Personally for me, i think keeping the abstraction layer would not add any cost and would make it easier for others to implement other runtimes vs forking libp2p and/or the protocols (or utils) and adding it. |
yeah it's decided then, you win 😛 |
@elenaf9 Could I take this issue :) ? |
What is the benefit of deprecating vs removing it? I've read some discussions in the past and there weren't ever compelling arguments to keep async-std. Just remove it already, those who need time to migrate can continue to use older version and maybe if there is a critical vulnerability worth fixing then a patch to 0.55.x series can be issued to help those users. As to abstractions, zero cost doesn't mean "free". It only means it is as efficient as you could have written it yourself. And supporting two runtimes might require boxing things, adding branches and other complications that inherently wouldn't be there if only single runtime was supported. Does anyone advocating for keeping abstractions really intend to integrate a custom async runtime, considering that even async-std ended up mostly unneeded in the ecosystem? If no I'd probably advocate for pruning abstractions too (though I didn't dig much into the code to see what it implies in practice). Also note that if there isn't a second runtime present, it is likely that those abstractions might end up being unsuitable for other custom runtimes anyway. For example both async-std and tokio have "implicit" context (global and thread-local accordingly) and some runtimes require an explicit handle, which already makes current abstractions insufficient, at least without hacks from one of both ends. |
Personally I don't. I am not planning to use a runtime other than |
@dariusc93 @elenaf9 @jxs what are your opinion on that ? |
A deprecation is nicer for users. Rather than getting a lot of errors that something doesn't exist (not everyone reads CHANGELOGs), they have a deprecation warning that includes info about how to migrate ("use tokio") and it allows for some time to do the changes without having to block the version upgrade on it.
The additional async runtime could also be implemented by a downstream crate, not necessarily by us. But it would require us to make the
That's a valid point. I would propose to soft-deprecate |
I feel like it is just a lot of effort most likely wasted for maintainers on all of those warnings and reviews. I understand if the APIs change and there is an upgrade path, but in this case it is a major breaking change for If I was an upstream maintainer I'd vote strongly in favor of removal in a new minor version and be done with it. IIRC @jxs was also in favor of removing it during last community call. |
@elenaf9 are you OK with me updating PR to delete it ? |
Description
Moving this into a separate issue to increase awareness.
We are planning to deprecate support for
async_std
throughout all of rust-libp2p.See prior discussion in #4449 (comment) and #3515 (comment).
If anyone still depends on it, please comment in this issue.
Depends on #4449.
Motivation
async-std
has officially be discontinued andtokio
has become the de-factor standard async runtime in the ecosystem.Current Implementation
We currently support two runtimes,
tokio
andasync_std
.tokio
is already the default in most examples/ tests.Implementation-wise, this concerns the swarm, mDNS, and the transports TCP, QUIC and DNS.
Open Question
Copying from #3515 (comment):
Are you planning to do it yourself in a pull request?
Maybe
The text was updated successfully, but these errors were encountered: