Skip to content

Commit 279e89b

Browse files
authored
Bump async-task (#13062)
Bumps `async-task` to 4.7.0 , note this is what Cargo.lock has as well. Building as a dependency gives the following: ``` Compiling async-channel v1.8.0 Compiling futures-lite v1.12.0 error[E0432]: unresolved import `async_task::Builder` --> /Users/daniel/.cargo/registry/src/index.crates.io-6f17d22bba15001f/async-executor-1.8.0/src/lib.rs:46:18 | 46 | use async_task::{Builder, Runnable}; | ^^^^^^^ no `Builder` in the root | = help: consider importing this struct instead: std::thread::Builder For more information about this error, try `rustc --explain E0432`. error: could not compile `async-executor` (lib) due to 1 previous error warning: build failed, waiting for other jobs to finish... ``` With this change, builds correctly
1 parent f496d2a commit 279e89b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_tasks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ futures-lite = "2.0.1"
1616
async-executor = "1.7.2"
1717
async-channel = { version = "2.2.0", optional = true }
1818
async-io = { version = "2.0.0", optional = true }
19-
async-task = { version = "4.2.0", optional = true }
19+
async-task = { version = "4.7.0", optional = true }
2020
concurrent-queue = { version = "2.0.0", optional = true }
2121

2222
[target.'cfg(target_arch = "wasm32")'.dependencies]

0 commit comments

Comments
 (0)