[toolchain, host] Update rust toolchain for host to nightly/2025-02-01 - #30939
Merged
timothytrippel merged 1 commit intoAug 24, 2026
Merged
Conversation
I am planning on using [`ml-dsa = "0.1.1"`](https://crates.io/crates/ml-dsa) library in host tooling for benchtop provisioning tests (ft provisioning). The current rust toolchain errors out with the following message: ``` error[E0405]: cannot find trait `AsyncFn` in this scope --> external/rules_rust++crate+crate_index__signature-3.0.0/src/verifier.rs:114:37 | 114 | async fn verify_digest_async<F: AsyncFn(&mut D) -> Result<(), Error>>( | ^^^^^^^ not found in this scope | help: consider importing this trait | 3 + use core::ops::AsyncFn; | ``` To address this issue, I am updating the toolchain to nightly version 2025-02-01. `AsyncFn` was [merged on 2025-01-30](rust-lang/rust#135852). By trial and error, I found that the compiler stops running into that error starting with nightly 2025-02-01 I also fixed clippy warnings (raised as errors by `-Dwarnings` that occurred after updating the compiler toolchain I verified the new hashes manually from [rust CDN](https://static.rust-lang.org/dist/2025-02-01/channel-rust-nightly.toml) Signed-off-by: Lovepreet Singh <lpsingh@google.com>
xorptr
force-pushed
the
perso_mldsa_ft_provisioning
branch
from
August 6, 2026 21:14
1a67557 to
4661489
Compare
xorptr
force-pushed
the
perso_mldsa_ft_provisioning
branch
from
August 6, 2026 21:20
4661489 to
bd52ebe
Compare
cfrantz
approved these changes
Aug 7, 2026
sasdf
approved these changes
Aug 17, 2026
Contributor
|
The test failure |
timothytrippel
merged commit Aug 24, 2026
a50a7fe
into
lowRISC:earlgrey_1.0.0
63 of 68 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I am planning on using
ml-dsa = "0.1.1"library in host tooling for benchtop provisioning tests (ft provisioning). The current rust toolchain errors out with the following message:To address this issue, I am updating the toolchain to nightly version 2025-02-01.
AsyncFnwasmerged on 2025-01-30. By trial and error, I found that the compiler stops running into that error starting with nightly 2025-02-01
I also fixed clippy warnings (raised as errors by
-Dwarningsthat occurred after updating the compiler toolchainI verified the new hashes manually from rust CDN