From 4e62c475699347ca9d5da65caef7335d0482b773 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Fri, 12 Jan 2024 06:21:56 -0500 Subject: [PATCH] `deps`: enable "luau-jit" feature to enable luau's native code generator (https://luau-lang.org/2023/11/01/luau-recap-october-2023.html#native-codegen-preview) --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a817ac4a7..e20728d8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -127,7 +127,11 @@ jsonxf = { version = "1", optional = true } jql-runner = { version = "7.1", default-features = false, optional = true } log = "0.4" mimalloc = { version = "0.1", default-features = false, optional = true } -mlua = { version = "0.9", features = ["luau", "serialize"], optional = true } +mlua = { version = "0.9", features = [ + "luau", + "luau-jit", + "serialize", +], optional = true } num_cpus = "1" odht = "0.3" phf = { version = "0.11", features = ["macros"], optional = true }