Skip to content

Commit 032c465

Browse files
committed
ecdsa: bump rand_core from 0.6.4 to 0.9.0
1 parent d3640f1 commit 032c465

File tree

8 files changed

+580
-144
lines changed

8 files changed

+580
-144
lines changed

.github/workflows/ecdsa.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- thumbv7em-none-eabi
2727
- wasm32-unknown-unknown
2828
rust:
29-
- 1.81.0 # MSRV
29+
- 1.85.0 # MSRV
3030
- stable
3131
steps:
3232
- uses: actions/checkout@v4
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
rust:
45-
- 1.81.0 # MSRV
45+
- 1.85.0 # MSRV
4646
- stable
4747
steps:
4848
- uses: actions/checkout@v4

Cargo.lock

+24-106
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+18-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
resolver = "2"
33
members = [
44
"dsa",
5-
"ecdsa",
5+
#"ecdsa",
66
"ed448",
77
"ed25519",
88
"lms",
99
#"ml-dsa",
1010
"rfc6979",
1111
"slh-dsa"
1212
]
13-
exclude = ["ml-dsa"] # using rand_core v0.9
13+
exclude = [
14+
"ecdsa",
15+
"ml-dsa",
16+
] # using rand_core v0.9
1417

1518
[profile.dev]
1619
opt-level = 2
@@ -19,10 +22,22 @@ opt-level = 2
1922
# A global patch crates-io block is used to avoid duplicate dependencies
2023
# when pulling a member crate through git
2124
dsa = { path = "./dsa" }
22-
ecdsa = { path = "./ecdsa" }
25+
# ecdsa = { path = "./ecdsa" }
2326
ed448-signature = { path = "./ed448" }
2427
ed25519 = { path = "./ed25519" }
2528
lms-signature = { path = "./lms" }
2629
#ml-dsa = { path = "./ml-dsa" }
2730
rfc6979 = { path = "./rfc6979" }
2831
slh-dsa = { path = "./slh-dsa" }
32+
33+
# https://github.com/RustCrypto/traits/pull/1751
34+
elliptic-curve = { git = "https://github.com/baloo/traits.git", branch = "baloo/elliptic-curve/bump-rand-core" }
35+
36+
# https://github.com/RustCrypto/crypto-bigint/pull/762
37+
# https://github.com/RustCrypto/crypto-bigint/pull/765
38+
crypto-bigint = { git = "https://github.com/RustCrypto/crypto-bigint.git" }
39+
40+
# https://github.com/zkcrypto/ff/pull/122
41+
ff = { git = "https://github.com/pinkforest/ff.git", branch = "bump-rand-core" }
42+
# https://github.com/zkcrypto/group/pull/56
43+
group = { git = "https://github.com/pinkforest/group.git", branch = "bump-rand-0.9" }

0 commit comments

Comments
 (0)