Skip to content

Commit 2efd584

Browse files
committed
ecdsa: bump rand_core from 0.6.4 to 0.9.0
1 parent d3640f1 commit 2efd584

File tree

6 files changed

+577
-134
lines changed

6 files changed

+577
-134
lines changed

Cargo.lock

Lines changed: 24 additions & 106 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 18 additions & 3 deletions
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)