Sibbo@sopuli.xyz to Rust Programming@lemmy.ml · 2 years agoWhy you might actually want async in your projectnotgull.netexternal-linkmessage-square8fedilinkarrow-up141arrow-down11cross-posted to: [email protected][email protected][email protected]
arrow-up140arrow-down1external-linkWhy you might actually want async in your projectnotgull.netSibbo@sopuli.xyz to Rust Programming@lemmy.ml · 2 years agomessage-square8fedilinkcross-posted to: [email protected][email protected][email protected]
minus-squareRunAwayFroglinkfedilinkarrow-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.