File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
.github/actions/install-rust Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 28
28
elif [ "${{ inputs.toolchain }}" = "msrv" ]; then
29
29
echo "version=1.$msrv.0" >> "$GITHUB_OUTPUT"
30
30
elif [ "${{ inputs.toolchain }}" = "wasmtime-ci-pinned-nightly" ]; then
31
- echo "version=nightly-2024-11-28 " >> "$GITHUB_OUTPUT"
31
+ echo "version=nightly-2025-01-09 " >> "$GITHUB_OUTPUT"
32
32
else
33
33
echo "version=${{ inputs.toolchain }}" >> "$GITHUB_OUTPUT"
34
34
fi
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ authors = ["The Wasmtime Project Developers"]
168
168
edition = " 2021"
169
169
# Wasmtime's current policy is that this number can be no larger than the
170
170
# current stable release of Rust minus 2.
171
- rust-version = " 1.81 .0"
171
+ rust-version = " 1.82 .0"
172
172
173
173
[workspace .lints .rust ]
174
174
# Turn on some lints which are otherwise allow-by-default in rustc.
Original file line number Diff line number Diff line change 2
2
//! to allocate the adapter stack, hence this test.
3
3
4
4
#[ export_name = "cabi_realloc" ]
5
- #[ no_mangle]
6
5
unsafe extern "C" fn cabi_realloc (
7
6
old_ptr : * mut u8 ,
8
7
old_len : usize ,
Original file line number Diff line number Diff line change @@ -1301,8 +1301,9 @@ pub mod relocs {
1301
1301
#[ cfg( target_arch = "x86_64" ) ]
1302
1302
use core:: arch:: x86_64:: __m128i;
1303
1303
#[ cfg( target_arch = "x86_64" ) ]
1304
+ #[ target_feature( enable = "sse" ) ]
1304
1305
#[ allow( improper_ctypes_definitions) ]
1305
- pub extern "C" fn x86_pshufb ( a : __m128i , b : __m128i ) -> __m128i {
1306
+ pub unsafe extern "C" fn x86_pshufb ( a : __m128i , b : __m128i ) -> __m128i {
1306
1307
union U {
1307
1308
reg : __m128i ,
1308
1309
mem : [ u8 ; 16 ] ,
You can’t perform that action at this time.
0 commit comments