From 5ddfb3e093d44e6a9a50447c318597187596ca7a Mon Sep 17 00:00:00 2001 From: makspll Date: Mon, 7 Apr 2025 17:45:50 +0100 Subject: [PATCH] fix: `lua54` feature being forced --- crates/bevy_mod_scripting_core/Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/bevy_mod_scripting_core/Cargo.toml b/crates/bevy_mod_scripting_core/Cargo.toml index 807597375f..5eff71e43c 100644 --- a/crates/bevy_mod_scripting_core/Cargo.toml +++ b/crates/bevy_mod_scripting_core/Cargo.toml @@ -25,9 +25,7 @@ mlua_impls = ["mlua"] rhai_impls = ["rhai"] [dependencies] -mlua = { version = "0.10", default-features = false, optional = true, features = [ - "lua54", -] } +mlua = { version = "0.10", default-features = false, optional = true } rhai = { version = "1.21", default-features = false, features = [ "sync", ], optional = true }