You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removed bevy_async_task::Duration. Use core::time::Duration instead.
The default timeout for timed tasks, was changed from u16::MAX millis (~65 seconds) to 60 seconds.
The maximum timeout allowed is now i32::MAX. This is now enforced with a panic.
Fixed
A time not implemented on this platform panic due to wasm-bindgen feature not being included for the futures-timer crate. You can remedy this yourself for older versions of bevy_async_task by including futures-timer = { version = "3.0.3", features = ["wasm-bindgen"] } in your Cargo.toml file.