You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm building a quite complex application around async-std library and in some cases I'm writing my own futures. The WakerSet defined in async-std/sync/ seems to be a very handy structure to have when writing futures. Unfortunately, it is currently exported as pub(crate) and not as pub leading to the fact that I can not import it in my own application.
Is there any reason that prevents the WakerSet to be pub? From the current status it seems that it could be made public with no issues, but perhaps I'm missing something...