From 8ebc41168da73141f4aea62c8c45600e3e61d3c8 Mon Sep 17 00:00:00 2001 From: Seongmin Lee Date: Wed, 24 Sep 2025 23:40:35 +0900 Subject: [PATCH] fix: remove `luajit` from default feature this blocks `lua-reqwest` from being installed with `luarocks make` luarocks-build-rust-mlua adds detected lua version when running `cargo build` so we don't need to put default lua version. actually it will break when the environment's lua version doesn't match with `luajit` Signed-off-by: Seongmin Lee --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ff4da12..ef8cc5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,6 @@ luajit = ["mlua/luajit"] crate-type = ["cdylib"] [dependencies] -mlua = { version = "0.9.9", features = ["luajit", "module"] } +mlua = { version = "0.9.9", features = ["module"] } reqwest = { version = "=0.12.7", features = ["blocking", "native-tls-alpn"] } bstr = "1.10.0"