-
Notifications
You must be signed in to change notification settings - Fork 245
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 950 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 950 Bytes
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",
"vrf",
]
[patch.crates-io]
signature = { path = "signature" }
# 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
# https://github.com/zkcrypto/ff/pull/126
# https://github.com/zkcrypto/ff/pull/127
ff = { git = "https://github.com/zkcrypto/ff.git", branch = "release-0.14.0" }
# https://github.com/zkcrypto/group/pull/56
group = { git = "https://github.com/pinkforest/group.git", branch = "bump-rand-0.9" }