Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Objective - Fixes #10664 ## Solution - `pub use futures_lite as future` :) --- ## Changelog - Made `futures_lite` available as `future` in the `bevy_tasks` module. ## Migration Guide - Remove `futures_lite` from `Cargo.toml`. ```diff [dependencies] bevy = "0.12.0" - futures-lite = "1.4.0" ``` - Replace `futures_lite` imports with `bevy::tasks::future`. ```diff - use futures_lite::poll_once; + use bevy::tasks::future::poll_once; ```
- Loading branch information