Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

elliptic-curve: bump rand_core to 0.9.0 #1751

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
255 changes: 202 additions & 53 deletions Cargo.lock

Large diffs are not rendered by default.

21 changes: 18 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,27 @@ members = [
"crypto",
"crypto-common",
"digest",
"elliptic-curve",
"kem",
"password-hash",
"signature_derive",
"universal-hash",
]
exclude = [
"elliptic-curve",
"signature",
]

[patch.crates-io]
signature = { path = "signature" }
sha2 = { git = "https://github.com/RustCrypto/hashes.git", branch = "edition_upgrade" }
sha3 = { git = "https://github.com/RustCrypto/hashes.git", branch = "edition_upgrade" }

hmac = { git = "https://github.com/baloo/MACs.git", branch = "baloo/edition-2024" }

# https://github.com/RustCrypto/crypto-bigint/pull/762
# https://github.com/RustCrypto/crypto-bigint/pull/765
crypto-bigint = { git = "https://github.com/RustCrypto/crypto-bigint.git" }

# https://github.com/zkcrypto/ff/pull/122
ff = { git = "https://github.com/pinkforest/ff.git", branch = "bump-rand-core" }

# https://github.com/zkcrypto/group/pull/56
group = { git = "https://github.com/pinkforest/group.git", branch = "bump-rand-0.9" }
Loading
Loading