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-03-25 15:20:14 -07:00
|
|
|
env_logger = "0.8.3"
|
|
|
|
|
log = "0.4.14"
|
2021-06-01 19:13:22 -07:00
|
|
|
itertools = "0.10.0"
|
2021-02-26 13:18:41 -08:00
|
|
|
num = "0.3"
|
2021-03-30 23:12:47 -07:00
|
|
|
rand = "0.7.3"
|
|
|
|
|
rand_chacha = "0.2.2"
|
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
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
opt-level = 3
|
2021-03-25 15:20:14 -07:00
|
|
|
#lto = "fat"
|
|
|
|
|
#codegen-units = 1
|