From c3db02e36e18ad64aa36cc63c40dea814d5d93e6 Mon Sep 17 00:00:00 2001 From: TimJentzsch Date: Sun, 18 Feb 2024 23:14:29 +0100 Subject: [PATCH] Fix dds feature dependencies in bevy_core_pipeline (#11962) # Objective - Fixes #11960 - The compilation of `bevy_core_pipeline` failed with the `dds` feature enabled ## Solution - Enable the `dds` feature of `bevy_render` when enabling it for `bevy_core_pipeline` --- crates/bevy_core_pipeline/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_core_pipeline/Cargo.toml b/crates/bevy_core_pipeline/Cargo.toml index bc10023bc7..14a2c0183d 100644 --- a/crates/bevy_core_pipeline/Cargo.toml +++ b/crates/bevy_core_pipeline/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0" keywords = ["bevy"] [features] -dds = [] +dds = ["bevy_render/dds"] trace = [] webgl = [] webgpu = []