Skip to content

Commit 508a36c

Browse files
authored
Merge pull request #269 from omnioiot/update-lua5.4.6
Update to Lua 5.4.6
2 parents 262180f + fa4caff commit 508a36c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+4063
-4712
lines changed

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ orbs:
66
jobs:
77
build-default:
88
docker:
9-
- image: circleci/rust:latest
9+
- image: cimg/rust:1.69.0
1010
steps:
1111
- checkout
1212
- run:
@@ -32,7 +32,7 @@ jobs:
3232
- run:
3333
name: Check bindgen
3434
command: |
35-
cargo install bindgen
35+
cargo install bindgen-cli
3636
scripts/update-bindgen.sh
3737
git diff --exit-code
3838
- run:
@@ -50,7 +50,7 @@ jobs:
5050
key: cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}
5151
build-no-oslib:
5252
docker:
53-
- image: circleci/rust:latest
53+
- image: cimg/rust:1.69.0
5454
steps:
5555
- checkout
5656
- run:
@@ -82,7 +82,7 @@ jobs:
8282
key: cargo-cache-no-oslib-{{ arch }}-{{ checksum "Cargo.lock" }}
8383
build-lua53:
8484
docker:
85-
- image: circleci/rust:latest
85+
- image: cimg/rust:1.69.0
8686
steps:
8787
- checkout
8888
- run:
@@ -108,7 +108,7 @@ jobs:
108108
- run:
109109
name: Check bindgen
110110
command: |
111-
cargo install bindgen
111+
cargo install bindgen-cli
112112
scripts/update-bindgen.sh
113113
git diff --exit-code
114114
- run:
@@ -126,7 +126,7 @@ jobs:
126126
key: cargo-cache-lua53-{{ arch }}-{{ checksum "Cargo.lock" }}
127127
build-lua51:
128128
docker:
129-
- image: circleci/rust:latest
129+
- image: cimg/rust:1.69.0
130130
steps:
131131
- checkout
132132
- run:
@@ -158,7 +158,7 @@ jobs:
158158
- run:
159159
name: Check bindgen
160160
command: |
161-
cargo install bindgen
161+
cargo install bindgen-cli
162162
scripts/update-bindgen.sh
163163
git diff --exit-code
164164
- run:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ libc = { version = "0.2" }
3535
num-traits = { version = "0.2.14" }
3636
bitflags = { version = "1.0.4" }
3737
bstr = {version = "0.2", features = ["std"], default_features = false }
38-
rlua-lua54-sys = { version = "0.1.3", optional = true }
38+
rlua-lua54-sys = { version = "0.1.4", optional = true }
3939
rlua-lua53-sys = { version = "0.1.2", optional = true }
4040
rlua-lua51-sys = { version = "0.1.2", optional = true }
4141

0 commit comments

Comments
 (0)