forked from 0xPolygonZero/plonky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (58 loc) · 1.14 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "plonky"
description = "Recursive SNARKs based on Plonk and Halo"
version = "0.1.0"
authors = ["Daniel Lubarov"]
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mir-protocol/plonky"
keywords = ["cryptography", "SNARK"]
categories = ["cryptography"]
edition = "2018"
default-run = "recursion"
[workspace]
members = ["plookup"]
[dependencies]
getrandom = "0.1.14"
num = "0.4.0"
rand = "0.7.3"
rayon = "1.3.0"
unroll = "0.1.4"
rand_chacha = "0.2.2"
blake3 = "0.3.3"
anyhow = "1.0.31"
once_cell = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
pretty_env_logger = "0.4"
serde_cbor = "0.11.1"
[dev-dependencies]
criterion = "0.3.3"
[[bench]]
name = "bigint_arithmetic"
harness = false
[[bench]]
name = "bls12_base"
harness = false
[[bench]]
name = "bls12_scalar"
harness = false
[[bench]]
name = "tweedledee_base"
harness = false
[[bench]]
name = "bls12_g1"
harness = false
[[bench]]
name = "bls12_g1_summations"
harness = false
[[bench]]
name = "hash_to_curve"
harness = false
[[bench]]
name = "fft"
harness = false
[profile.release]
opt-level = 3
[profile.bench]
opt-level = 3