You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updates our Rust toolchain to 1.97/nightly-2026-04-29, and updates all of our dependencies as much as possible (though there are still a couple cases where we keep an older version) - I also didn't update any of the wit-bindgen-related deps.
I'm hoping this might make #1090 a little cleaner now that Rust has removed --allow-undefined from its default wasm-ld flags, but we'll see.
@greenhat I think we should remove the cargo-miden integration tests (specifically the ones that generate the integration workspace from the project-template repo) from this repo, and move them to the project-template repo (which already does in fact run the same tests AIUI). Those two tests fail every time there is some kind of weird divergence between nightlies (e.g. in this case, an older version of hashbrown was specializing on Copy and that isn't supported now, so it fails to compile). Since those tests aren't actually running the right version of cargo-miden anyway (because the version the generated integration workspace uses is pulled from crates.io), there is basically no point in running them in our CI.
@greenhat I think we should remove the cargo-miden integration tests (specifically the ones that generate the integration workspace from the project-template repo) from this repo, and move them to the project-template repo (which already does in fact run the same tests AIUI). Those two tests fail every time there is some kind of weird divergence between nightlies (e.g. in this case, an older version of hashbrown was specializing on Copy and that isn't supported now, so it fails to compile). Since those tests aren't actually running the right version of cargo-miden anyway (because the version the generated integration workspace uses is pulled from crates.io), there is basically no point in running them in our CI.
I agree. Make them ignored and I'll take care of moving them to the project-template repo.
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
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.
Updates our Rust toolchain to 1.97/nightly-2026-04-29, and updates all of our dependencies as much as possible (though there are still a couple cases where we keep an older version) - I also didn't update any of the
wit-bindgen-related deps.I'm hoping this might make #1090 a little cleaner now that Rust has removed
--allow-undefinedfrom its defaultwasm-ldflags, but we'll see.