-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathCargo.toml
35 lines (29 loc) · 970 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[workspace]
resolver = "3"
members = [
"aead",
"async-signature",
"cipher",
"crypto",
"crypto-common",
"digest",
"elliptic-curve",
"kem",
"password-hash",
"signature_derive",
"universal-hash",
"signature",
]
[patch.crates-io]
signature = { path = "signature" }
sha2 = { git = "/~https://github.com/RustCrypto/hashes" }
sha3 = { git = "/~https://github.com/RustCrypto/hashes" }
# /~https://github.com/RustCrypto/MACs/pull/178
hmac = { git = "/~https://github.com/RustCrypto/MACs.git" }
# /~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" }