-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathCargo.toml
42 lines (38 loc) · 949 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
36
37
38
39
40
41
42
[workspace]
resolver = "2"
members = [
"frost-core",
"frost-ed25519",
"frost-ed448",
"frost-p256",
"frost-ristretto255",
"frost-secp256k1",
"frost-secp256k1-tr",
"frost-rerandomized",
"gencode"
]
[workspace.package]
edition = "2021"
version = "2.1.0"
authors = [
"Deirdre Connolly <[email protected]>",
"Chelsea Komlo <[email protected]>",
"Conrado Gouvea <[email protected]>",
"Natalie Eskinazi <[email protected]>"
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZcashFoundation/frost"
categories = ["cryptography"]
[workspace.dependencies]
criterion = "0.5"
document-features = "0.2.7"
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
insta = { version = "1.31.0", features = ["yaml"] }
lazy_static = "1.4"
proptest = "1.0"
rand = "0.8"
rand_chacha = "0.3"
rand_core = "0.6"
serde_json = "1.0"
[profile.test.package."*"]
opt-level = 3