Sibbo@sopuli.xyz to Rust Programming@lemmy.ml · 1 year agoWhy you might actually want async in your projectnotgull.netexternal-linkmessage-square10fedilinkarrow-up140arrow-down11cross-posted to: [email protected][email protected]
arrow-up139arrow-down1external-linkWhy you might actually want async in your projectnotgull.netSibbo@sopuli.xyz to Rust Programming@lemmy.ml · 1 year agomessage-square10fedilinkcross-posted to: [email protected][email protected]
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.