Skip to content

Commit 4f2fa15

Browse files
authored
Update nightly Rust used in CI (#11755)
* Update nightly Rust used in CI Keeping it up-to-date prtest:full * Fix unused warnings on nightly * Rename rustdoc feature * Adjust some removals
1 parent ec68a03 commit 4f2fa15

File tree

8 files changed

+8
-6
lines changed

8 files changed

+8
-6
lines changed

.github/actions/install-rust/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
elif [ "${{ inputs.toolchain }}" = "msrv" ]; then
3333
echo "version=1.$msrv.0" >> "$GITHUB_OUTPUT"
3434
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"
3636
else
3737
echo "version=${{ inputs.toolchain }}" >> "$GITHUB_OUTPUT"
3838
fi

cranelift/codegen/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Cranelift code generation library.
22
#![deny(missing_docs)]
33
// 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))]
55
#![no_std]
66
// Various bits and pieces of this crate might only be used for one platform or
77
// another, but it's not really too useful to learn about that all the time. On

crates/c-api/src/linker.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ macro_rules! to_str {
4646
};
4747
}
4848

49+
#[cfg(feature = "async")]
4950
pub(crate) use to_str;
5051

5152
#[unsafe(no_mangle)]

crates/c-api/src/vec.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ macro_rules! declare_vecs {
148148
)*};
149149
}
150150

151+
#[cfg(feature = "async")]
151152
pub(crate) use declare_vecs;
152153

153154
declare_vecs! {

crates/wasi-http/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@
218218
#![deny(missing_docs)]
219219
#![doc(test(attr(deny(warnings))))]
220220
#![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))]
222222

223223
mod error;
224224
mod http_impl;

crates/wasi/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1+
#![cfg_attr(docsrs, feature(doc_cfg))]
22

33
//! # Wasmtime's WASI Implementation
44
//!

crates/wasmtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@
279279
#![deny(missing_docs)]
280280
#![doc(test(attr(deny(warnings))))]
281281
#![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))]
283283
// NB: this list is currently being burned down to remove all features listed
284284
// here to get warnings in all configurations of Wasmtime.
285285
#![cfg_attr(

pulley/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! The pulley bytecode for fast interpreters.
22
3-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
3+
#![cfg_attr(docsrs, feature(doc_cfg))]
44
#![cfg_attr(pulley_tail_calls, feature(explicit_tail_calls))]
55
#![cfg_attr(pulley_tail_calls, allow(incomplete_features, unstable_features))]
66
#![deny(missing_docs)]

0 commit comments

Comments
 (0)