|
|
|
|
|
by bryanlarsen
861 days ago
|
|
> I'd prefer if rustlang had a standard async/await implementation rather than leaving it up to the ecosystem The "default" is tokio, and I think even the tokio authors would agree that it's neither suitable nor ready to be part of the stdlib. OTOH, pollster[1] (or something like it) should be pulled into the standard library. Not particularly useful for anybody who wants async, but super useful for anybody who doesn't want async but wants to use a 3rd party crate that includes async. 1: https://docs.rs/pollster/latest/pollster/ |
|