From 54856d088d912c8a33193c6bdc523563796c35c8 Mon Sep 17 00:00:00 2001 From: Lucas Franca Date: Mon, 5 May 2025 14:38:31 -0300 Subject: [PATCH] Upgrade `atomicow` version (#19075) # Objective `atomicow` `1.0` does not have `std` feature requested by `bevy_asset`, but `1.1` does ## Solution Bump version --- crates/bevy_asset/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 9272f9b740..07a45a3f6d 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -36,7 +36,7 @@ bevy_platform = { path = "../bevy_platform", version = "0.16.0-dev", default-fea ] } stackfuture = { version = "0.3", default-features = false } -atomicow = { version = "1.0", default-features = false, features = ["std"] } +atomicow = { version = "1.1", default-features = false, features = ["std"] } async-broadcast = { version = "0.7.2", default-features = false } async-fs = { version = "2.0", default-features = false } async-lock = { version = "3.0", default-features = false }