Skip to content

Commit 3de0288

Browse files
committed
Upgrade bindgen
1 parent 73179c8 commit 3de0288

8 files changed

Lines changed: 32 additions & 230 deletions

File tree

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Rust
2424
uses: dtolnay/rust-toolchain@master
2525
with:
26-
toolchain: "1.71.1"
26+
toolchain: stable
2727
- name: Install doxygen and dependencies
2828
run: |
2929
sudo apt-get update

.github/workflows/rust-bindings.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
- name: Set up Rust
3434
uses: dtolnay/rust-toolchain@master
3535
with:
36-
toolchain: "1.71.1"
37-
targets: wasm32-wasi
36+
toolchain: stable
37+
targets: wasm32-wasip1
3838
- uses: actions/cache@v4
3939
with:
4040
path: |
@@ -65,7 +65,7 @@ jobs:
6565
- name: Set up Rust
6666
uses: dtolnay/rust-toolchain@master
6767
with:
68-
toolchain: "1.71.1"
68+
toolchain: stable
6969
components: clippy, rustfmt
7070
- uses: actions/cache@v4
7171
with:
@@ -100,7 +100,7 @@ jobs:
100100
run: bundle exec rake cargo:build
101101
- uses: dtolnay/rust-toolchain@master
102102
with:
103-
toolchain: nightly-2023-10-24
103+
toolchain: stable
104104
target: "x86_64-unknown-linux-gnu"
105105
components: "rust-src"
106106
- name: Test with sanitizer
@@ -126,7 +126,7 @@ jobs:
126126
# uses: dtolnay/rust-toolchain@master
127127
# with:
128128
# toolchain: "1.71.1"
129-
# targets: wasm32-wasi
129+
# targets: wasm32-wasip1
130130
# - uses: actions/cache@v4
131131
# with:
132132
# path: |

rakelib/cargo.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ namespace :cargo do
9797

9898
CRATES.each do |crate|
9999
Dir.chdir("rust/#{crate}") do
100-
sh("cargo +nightly-2023-10-24 test -Zbuild-std --target=#{current_target} -- --nocapture")
100+
sh("cargo test -Zbuild-std --target=#{current_target} -- --nocapture")
101101
end
102102
end
103103
ensure

rust/Cargo.lock

Lines changed: 19 additions & 219 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)