From b0e5e4c9b8d345d33add7b133135b3499e996d67 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 8 May 2026 09:51:22 +0200 Subject: [PATCH] chore: enable bevy debug feature for tests Adds bevy as a dev-dependency with the `debug` feature so that `cargo test` builds with system-name diagnostics enabled, while release/run builds remain unaffected. --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index e656a0c..7c8147f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,3 +6,6 @@ edition = "2021" [dependencies] bevy = "0.18" fastrand = "2.0.1" + +[dev-dependencies] +bevy = { version = "0.18", features = ["debug"] }