2
2
resolver = " 2"
3
3
members = [
4
4
" dsa" ,
5
- " ecdsa" ,
5
+ # "ecdsa",
6
6
" ed448" ,
7
7
" ed25519" ,
8
8
" lms" ,
9
9
# "ml-dsa",
10
10
" rfc6979" ,
11
11
" slh-dsa"
12
12
]
13
- exclude = [" ml-dsa" ] # using rand_core v0.9
13
+ exclude = [
14
+ " ecdsa" ,
15
+ " ml-dsa" ,
16
+ ] # using rand_core v0.9
14
17
15
18
[profile .dev ]
16
19
opt-level = 2
@@ -19,10 +22,22 @@ opt-level = 2
19
22
# A global patch crates-io block is used to avoid duplicate dependencies
20
23
# when pulling a member crate through git
21
24
dsa = { path = " ./dsa" }
22
- ecdsa = { path = " ./ecdsa" }
25
+ # ecdsa = { path = "./ecdsa" }
23
26
ed448-signature = { path = " ./ed448" }
24
27
ed25519 = { path = " ./ed25519" }
25
28
lms-signature = { path = " ./lms" }
26
29
# ml-dsa = { path = "./ml-dsa" }
27
30
rfc6979 = { path = " ./rfc6979" }
28
31
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