Closed chemicstry closed 4 years ago
Currently this library (and async-executor) crashes on wasm due to missing std::time. This replaces it with cross-platform library instant.
async-executor
std::time
instant
Note that instant library could be used by default on all targets, but I added it for wasm32 only as it cuts dependency count on native targets.
wasm32
Published v1.4.0.
Currently this library (and
async-executor
) crashes on wasm due to missingstd::time
. This replaces it with cross-platform libraryinstant
.Note that
instant
library could be used by default on all targets, but I added it forwasm32
only as it cuts dependency count on native targets.