Sibbo@sopuli.xyz to Rust Programming@lemmy.ml · 2 years agoWhy you might actually want async in your projectnotgull.netexternal-linkmessage-square10fedilinkarrow-up142arrow-down11
arrow-up141arrow-down1external-linkWhy you might actually want async in your projectnotgull.netSibbo@sopuli.xyz to Rust Programming@lemmy.ml · 2 years agomessage-square10fedilink
minus-squareRunAwayFrog@sh.itjust.workslinkfedilinkarrow-up4arrow-down1·edit-22 years 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.