Skip to content

Commit 5f8baef

Browse files
committed
fix: remove luajit feature from cargo.toml
1 parent 3331031 commit 5f8baef

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ jobs:
124124
components: rustfmt
125125
- name: build rust code
126126
run: |
127-
cargo build --verbose --release
127+
cargo build --features "luajit" --verbose --release
128128
129129
- name: Run Clippy
130-
run: cargo clippy --all-targets
130+
run: cargo clippy --all-targets --features "luajit"
131131

132132
- name: Rustfmt Check
133133
uses: actions-rust-lang/rustfmt@v1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ luajit = ["mlua/luajit"]
1414
crate-type = ["cdylib"]
1515

1616
[dependencies]
17-
mlua = { version = "0.9.9", features = ["luajit", "module"] }
17+
mlua = { version = "0.9.9", features = ["module"] }
1818
reqwest = { version = "=0.12.7", features = ["blocking", "native-tls-alpn"] }
1919
bstr = "1.10.0"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package = "lua-reqwest"
2-
version = "0.1.2-1"
2+
version = "0.1.4-1"
33

44
source = {
55
url = "git+https://github.com/oowl/lua-reqwest",
6-
tag = "0.1.2",
6+
tag = "0.1.4",
77
}
88

99
description = {

0 commit comments

Comments
 (0)