File tree Expand file tree Collapse file tree 8 files changed +8
-6
lines changed
.github/actions/install-rust Expand file tree Collapse file tree 8 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 32
32
elif [ "${{ inputs.toolchain }}" = "msrv" ]; then
33
33
echo "version=1.$msrv.0" >> "$GITHUB_OUTPUT"
34
34
elif [ "${{ inputs.toolchain }}" = "wasmtime-ci-pinned-nightly" ]; then
35
- echo "version=nightly-2025-08-06 " >> "$GITHUB_OUTPUT"
35
+ echo "version=nightly-2025-09-29 " >> "$GITHUB_OUTPUT"
36
36
else
37
37
echo "version=${{ inputs.toolchain }}" >> "$GITHUB_OUTPUT"
38
38
fi
Original file line number Diff line number Diff line change 1
1
//! Cranelift code generation library.
2
2
#![ deny( missing_docs) ]
3
3
// Display feature requirements in the documentation when building on docs.rs
4
- #![ cfg_attr( docsrs, feature( doc_auto_cfg ) ) ]
4
+ #![ cfg_attr( docsrs, feature( doc_cfg ) ) ]
5
5
#![ no_std]
6
6
// Various bits and pieces of this crate might only be used for one platform or
7
7
// another, but it's not really too useful to learn about that all the time. On
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ macro_rules! to_str {
46
46
} ;
47
47
}
48
48
49
+ #[ cfg( feature = "async" ) ]
49
50
pub ( crate ) use to_str;
50
51
51
52
#[ unsafe( no_mangle) ]
Original file line number Diff line number Diff line change @@ -148,6 +148,7 @@ macro_rules! declare_vecs {
148
148
) * } ;
149
149
}
150
150
151
+ #[ cfg( feature = "async" ) ]
151
152
pub ( crate ) use declare_vecs;
152
153
153
154
declare_vecs ! {
Original file line number Diff line number Diff line change 218
218
#![ deny( missing_docs) ]
219
219
#![ doc( test( attr( deny( warnings) ) ) ) ]
220
220
#![ doc( test( attr( allow( dead_code, unused_variables, unused_mut) ) ) ) ]
221
- #![ cfg_attr( docsrs, feature( doc_auto_cfg ) ) ]
221
+ #![ cfg_attr( docsrs, feature( doc_cfg ) ) ]
222
222
223
223
mod error;
224
224
mod http_impl;
Original file line number Diff line number Diff line change 1
- #![ cfg_attr( docsrs, feature( doc_auto_cfg ) ) ]
1
+ #![ cfg_attr( docsrs, feature( doc_cfg ) ) ]
2
2
3
3
//! # Wasmtime's WASI Implementation
4
4
//!
Original file line number Diff line number Diff line change 279
279
#![ deny( missing_docs) ]
280
280
#![ doc( test( attr( deny( warnings) ) ) ) ]
281
281
#![ doc( test( attr( allow( dead_code, unused_variables, unused_mut) ) ) ) ]
282
- #![ cfg_attr( docsrs, feature( doc_auto_cfg ) ) ]
282
+ #![ cfg_attr( docsrs, feature( doc_cfg ) ) ]
283
283
// NB: this list is currently being burned down to remove all features listed
284
284
// here to get warnings in all configurations of Wasmtime.
285
285
#![ cfg_attr(
Original file line number Diff line number Diff line change 1
1
//! The pulley bytecode for fast interpreters.
2
2
3
- #![ cfg_attr( docsrs, feature( doc_auto_cfg ) ) ]
3
+ #![ cfg_attr( docsrs, feature( doc_cfg ) ) ]
4
4
#![ cfg_attr( pulley_tail_calls, feature( explicit_tail_calls) ) ]
5
5
#![ cfg_attr( pulley_tail_calls, allow( incomplete_features, unstable_features) ) ]
6
6
#![ deny( missing_docs) ]
You can’t perform that action at this time.
0 commit comments