File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
.github/actions/install-rust
crates/wasmtime/src/runtime Expand file tree Collapse file tree 3 files changed +5
-5
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-2025-06-26 " >> "$GITHUB_OUTPUT"
31
+ echo "version=nightly-2025-07-08 " >> "$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 @@ -240,9 +240,9 @@ pub struct StoreInner<T: 'static> {
240
240
}
241
241
242
242
enum ResourceLimiterInner < T > {
243
- Sync ( Box < dyn FnMut ( & mut T ) -> & mut ( dyn crate :: ResourceLimiter ) + Send + Sync > ) ,
243
+ Sync ( Box < dyn ( FnMut ( & mut T ) -> & mut dyn crate :: ResourceLimiter ) + Send + Sync > ) ,
244
244
#[ cfg( feature = "async" ) ]
245
- Async ( Box < dyn FnMut ( & mut T ) -> & mut ( dyn crate :: ResourceLimiterAsync ) + Send + Sync > ) ,
245
+ Async ( Box < dyn ( FnMut ( & mut T ) -> & mut dyn crate :: ResourceLimiterAsync ) + Send + Sync > ) ,
246
246
}
247
247
248
248
enum CallHookInner < T : ' static > {
@@ -753,7 +753,7 @@ impl<T> Store<T> {
753
753
/// [`ResourceLimiter`]: crate::ResourceLimiter
754
754
pub fn limiter (
755
755
& mut self ,
756
- mut limiter : impl FnMut ( & mut T ) -> & mut ( dyn crate :: ResourceLimiter ) + Send + Sync + ' static ,
756
+ mut limiter : impl ( FnMut ( & mut T ) -> & mut dyn crate :: ResourceLimiter ) + Send + Sync + ' static ,
757
757
) {
758
758
// Apply the limits on instances, tables, and memory given by the limiter:
759
759
let inner = & mut self . inner ;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ impl<T> Store<T> {
40
40
/// [`Config::async_support`](crate::Config::async_support).
41
41
pub fn limiter_async (
42
42
& mut self ,
43
- mut limiter : impl FnMut ( & mut T ) -> & mut ( dyn crate :: ResourceLimiterAsync )
43
+ mut limiter : impl ( FnMut ( & mut T ) -> & mut dyn crate :: ResourceLimiterAsync )
44
44
+ Send
45
45
+ Sync
46
46
+ ' static ,
You can’t perform that action at this time.
0 commit comments