From 26c3b20f1ce1e04fcd37816d35fdff4d8433064f Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Wed, 20 Apr 2022 11:46:34 +0000 Subject: [PATCH] Remove some unused dependencies (#4544) This a commit I think would be uncontroversial that has been cherry-picked from https://github.com/bevyengine/bevy/pull/3886 --- crates/bevy_core/Cargo.toml | 1 - crates/bevy_ui/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 4b3b7f336d..7035d2fbc2 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -12,7 +12,6 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.8.0-dev", features = ["bevy_reflect"] } -bevy_derive = { path = "../bevy_derive", version = "0.8.0-dev" } bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev", features = ["bevy_reflect"] } bevy_math = { path = "../bevy_math", version = "0.8.0-dev" } bevy_reflect = { path = "../bevy_reflect", version = "0.8.0-dev", features = ["bevy"] } diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index ea49dbfcf8..8f1b0a6be3 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -14,7 +14,6 @@ bevy_app = { path = "../bevy_app", version = "0.8.0-dev" } bevy_asset = { path = "../bevy_asset", version = "0.8.0-dev" } bevy_core = { path = "../bevy_core", version = "0.8.0-dev" } bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.8.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.8.0-dev" } bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev" } bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.8.0-dev" } bevy_input = { path = "../bevy_input", version = "0.8.0-dev" }