From 7c385b155733464a68f8a0b830d116a80a2a9afd Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Fri, 29 Aug 2025 13:35:50 -0500 Subject: [PATCH] Make dynamic linking feature a default Now I don't need to keep setting the option on the command line. I'll take it out (or use `--no-default-features`) when making the release build. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 5a92fc7..331d472 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,7 @@ bevy_rapier2d = "0.31.0" rand = "0.9.2" [features] +default = ["dynamic_linking"] dynamic_linking = ["bevy/dynamic_linking"] debug_ui = ["bevy_rapier2d/debug-render-2d"]