Sibbo@sopuli.xyz to Rust Programming@lemmy.ml · 1 year agoWhy you might actually want async in your projectnotgull.netexternal-linkmessage-square8fedilinkarrow-up141arrow-down11
arrow-up140arrow-down1external-linkWhy you might actually want async in your projectnotgull.netSibbo@sopuli.xyz to Rust Programming@lemmy.ml · 1 year agomessage-square8fedilink
minus-squareRunAwayFrog@sh.itjust.workslinkfedilinkarrow-up4arrow-down1·edit-21 year agoPractically speaking, you don’t have to. Your executor of choice should be doing tokio compat for you, one way or another, so you don’t have to worry about it (e.g. async-global-executor with the tokio feature). async-std is dead.
Practically speaking, you don’t have to.
Your executor of choice should be doing
tokio
compat for you, one way or another, so you don’t have to worry about it (e.g. async-global-executor with thetokio
feature).async-std
is dead.