Update features to allow switching backends between u64 and u32.#217
Merged
coltfred merged 7 commits intodependabot/cargo/rand-0.9from Jan 15, 2026
Merged
Update features to allow switching backends between u64 and u32.#217coltfred merged 7 commits intodependabot/cargo/rand-0.9from
coltfred merged 7 commits intodependabot/cargo/rand-0.9from
Conversation
giarc3
approved these changes
Jan 12, 2026
coltfred
added a commit
that referenced
this pull request
Jan 30, 2026
* Update rand requirement from 0.8 to 0.9 Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](rust-random/rand@0.8.0...0.9.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Fix for rand 0.9 and getrandom 0.3 * Update flake * Fix the version of ed25519 for now * Update features to allow switching backends between u64 and u32. (#217) * New gridiron, bump version * self review * Be more precise --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Colt Frederickson <coltfred@gmail.com>
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.
This leverages the changes made in IronCoreLabs/gridiron#66 to double the speed in most situations. WASM will still need to use 31 bit limbs, but if possible 62 bit should be used (as it's twice as fast).