From ae9b4fc2dc0c016e4acad65203eda2e606d7d9a3 Mon Sep 17 00:00:00 2001 From: James Liu Date: Tue, 27 Feb 2024 00:31:51 -0800 Subject: [PATCH] Remove downcast-rs as a dependency from bevy_ecs (#12151) # Objective `downcast-rs` is not used within bevy_ecs. This is probably a remnant from before Schedule v3 landed, since stages needed the downcasting. ## Solution Remove it. --- crates/bevy_ecs/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 1e8f5fe1fe033..7699829425238 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -25,7 +25,6 @@ bevy_ecs_macros = { path = "macros", version = "0.14.0-dev" } concurrent-queue = "2.4.0" fixedbitset = "0.4.2" rustc-hash = "1.1" -downcast-rs = "1.2" serde = "1" thiserror = "1.0"