If you’ve used Rust to build anything for the web (or anything that needs to talk to something else
over a network), more than likely you’ve encountered async / await syntax. You’ve probably had to
install an async runtime (more than likely tokio ). Most of the time, things like tokio d...