2021-02-09 21:25:21 -08:00
|
|
|
[package]
|
|
|
|
|
name = "plonky2"
|
2021-04-06 13:14:59 -07:00
|
|
|
description = "Recursive SNARKs based on Plonk and FRI"
|
2021-02-09 21:25:21 -08:00
|
|
|
version = "0.1.0"
|
2021-04-06 13:14:59 -07:00
|
|
|
authors = ["Daniel Lubarov <daniel@mirprotocol.org>"]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
repository = "https://github.com/mir-protocol/plonky2"
|
2021-04-12 10:38:07 +02:00
|
|
|
keywords = ["cryptography", "SNARK", "FRI"]
|
2021-04-06 13:14:59 -07:00
|
|
|
categories = ["cryptography"]
|
2021-02-09 21:25:21 -08:00
|
|
|
edition = "2018"
|
2021-04-06 13:14:59 -07:00
|
|
|
default-run = "bench_recursion"
|
2021-02-09 21:25:21 -08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-02 11:54:20 -07:00
|
|
|
array_tool = "1.0.3"
|
2021-10-19 19:35:10 -07:00
|
|
|
bimap = "0.6.1"
|
2021-08-09 10:11:42 -07:00
|
|
|
env_logger = "0.9.0"
|
2021-03-25 15:20:14 -07:00
|
|
|
log = "0.4.14"
|
2021-06-01 19:13:22 -07:00
|
|
|
itertools = "0.10.0"
|
2021-10-06 11:34:50 -07:00
|
|
|
num = { version = "0.4", features = [ "rand" ] }
|
2021-08-09 10:11:42 -07:00
|
|
|
rand = "0.8.4"
|
|
|
|
|
rand_chacha = "0.3.1"
|
2021-07-15 07:40:41 -07:00
|
|
|
rayon = "1.5.1"
|
2021-03-25 15:20:14 -07:00
|
|
|
unroll = "0.1.5"
|
2021-04-22 09:27:59 +02:00
|
|
|
anyhow = "1.0.40"
|
2021-07-15 07:35:12 -07:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_cbor = "0.11.1"
|
2021-02-09 21:25:21 -08:00
|
|
|
|
2021-08-08 09:14:50 -07:00
|
|
|
[dev-dependencies]
|
|
|
|
|
criterion = "0.3.5"
|
2021-08-18 08:36:40 -07:00
|
|
|
tynm = "0.1.6"
|
2021-08-08 09:14:50 -07:00
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "field_arithmetic"
|
|
|
|
|
harness = false
|
|
|
|
|
|
2021-08-18 08:36:40 -07:00
|
|
|
[[bench]]
|
|
|
|
|
name = "ffts"
|
|
|
|
|
harness = false
|
|
|
|
|
|
2021-10-09 14:07:49 -07:00
|
|
|
[[bench]]
|
|
|
|
|
name = "hashing"
|
|
|
|
|
harness = false
|
|
|
|
|
|
2021-08-18 09:43:19 -07:00
|
|
|
[[bench]]
|
|
|
|
|
name = "transpose"
|
|
|
|
|
harness = false
|
|
|
|
|
|
2021-02-09 21:25:21 -08:00
|
|
|
[profile.release]
|
|
|
|
|
opt-level = 3
|
2021-03-25 15:20:14 -07:00
|
|
|
#lto = "fat"
|
|
|
|
|
#codegen-units = 1
|
2021-08-18 08:36:40 -07:00
|
|
|
|
|
|
|
|
[profile.bench]
|
|
|
|
|
opt-level = 3
|