From b2d654cbf6a47f22d03a6bd55adf8cffa31f051c Mon Sep 17 00:00:00 2001 From: MinerSebas Date: Sat, 6 Mar 2021 00:53:42 +0000 Subject: [PATCH] Use rand 0.8 again (#1567) #1525 accidentally moved back to rand 0.7 --- crates/bevy_ecs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 3c0ac1b0e6..81ccaee3c6 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -30,5 +30,5 @@ fxhash = "0.2" thiserror = "1.0" downcast-rs = "1.2" parking_lot = "0.11" -rand = "0.7" +rand = "0.8" serde = "1"