For my library, I want to replace async_std
by smol
, since the former has been deprecated in favor of the latter. This is mostly just a simple translation (different module structure, names etc.), but what I don’t know is how to replace async-std's stdin
. Anybody got a hint on that?
Oh yeah, the docs even mention
Unblock<Stdin>
explicitely. Thanks a lot!