diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aebd46b..7e0d49c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -124,10 +124,10 @@ jobs: components: rustfmt - name: build rust code run: | - cargo build --verbose --release + cargo build --features "luajit" --verbose --release - name: Run Clippy - run: cargo clippy --all-targets + run: cargo clippy --all-targets --features "luajit" - name: Rustfmt Check uses: actions-rust-lang/rustfmt@v1 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" diff --git a/lua-reqwest-0.1.2-1.rockspec b/lua-reqwest-0.1.4-1.rockspec similarity index 92% rename from lua-reqwest-0.1.2-1.rockspec rename to lua-reqwest-0.1.4-1.rockspec index b49a798..a4b864c 100644 --- a/lua-reqwest-0.1.2-1.rockspec +++ b/lua-reqwest-0.1.4-1.rockspec @@ -1,9 +1,9 @@ package = "lua-reqwest" -version = "0.1.2-1" +version = "0.1.4-1" source = { url = "git+https://github.com/oowl/lua-reqwest", - tag = "0.1.2", + tag = "0.1.4", } description = {