From 4ffd5104f3d7f2615796588e025a28af8ebe5f05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Maita?= <47983254+mnmaita@users.noreply.github.com> Date: Wed, 22 Nov 2023 10:41:48 -0300 Subject: [PATCH] Bumps async crates requirements to latest major version (#10370) # Objective - Closes #10316 ## Solution - Grouped a bunch of version requirement bumps for most of the `async` crates. --- crates/bevy_asset/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index c088c61ac4d81..ba208416e2767 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -27,8 +27,8 @@ bevy_tasks = { path = "../bevy_tasks", version = "0.12.0" } bevy_utils = { path = "../bevy_utils", version = "0.12.0" } async-broadcast = "0.5" -async-fs = "1.5" -async-lock = "2.8" +async-fs = "2.0" +async-lock = "3.0" crossbeam-channel = "0.5" downcast-rs = "1.2" futures-io = "0.3"