See for example this build of the CI: https://github.com/bevyengine/bevy/pull/528/checks?check_run_id=1140557857#step:7:169
Right now it鈥檚 impossible to git clone bevy and cargo build, be it with stable or nightly toolchain.
Ah, apparently the solution is around here: https://github.com/bevyengine/bevy/pull/526
The easiest fix until that PR is merged is to add this as a dependency to your Cargo.toml:
async-executor = "=1.2.0"
Yes, works, thank you :). What I don鈥檛 understand is why the Cargo.lock didn鈥檛 work (when building directly the Bevy repository, for the examples).
Ran into the same issue, thanks!
This is resolved by the 0.2.1 patch release.
Most helpful comment
The easiest fix until that PR is merged is to add this as a dependency to your
Cargo.toml: