-
Notifications
You must be signed in to change notification settings - Fork 76
/
Cargo.toml
72 lines (64 loc) · 1.66 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
72
[package]
name = "plonk"
version = "0.8.2"
authors = [
"Kevaundray Wedderburn <[email protected]>",
"Luke Pearson <[email protected]>",
"Jules De Smit <[email protected]>",
"Joshua Fitzgerald <[email protected]>",
"Carlos Perez <[email protected]>",
"David Nevado <[email protected]>",
"Zhenfei Zhang <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/zk-garage/plonk"
keywords = ["cryptography", "plonk", "zk-snarks", "zero-knowledge", "crypto"]
categories =["algorithms", "cryptography", "science"]
description = "A pure-Rust implementation of the PLONK ZK-Proof algorithm."
license = "MPL"
edition = "2021"
include = ["src", "LICENSE-*", "README.md"]
[package.metadata.docs.rs]
# To build locally:
# RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --open
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]
[workspace]
resolver = "2"
members = [
"plonk-core",
"plonk-hashing",
]
[dependencies]
plonk-core = { path = "plonk-core" }
plonk-hashing = { path = "plonk-hashing" }
[dev-dependencies]
ark-ff = "0.3"
ark-sponge = "0.3"
ark-std = "0.3"
ark-bls12-377 = "0.3"
ark-bls12-381 = "0.3"
ark-ec = "0.3"
ark-ed-on-bls12-377 = "0.3"
ark-ed-on-bls12-381 = "0.3"
ark-poly = "0.3"
ark-poly-commit = "0.3"
blake2 = "0.9"
criterion = "0.3"
derivative = "2.2.0"
paste = "1.0.6"
rand_core = {version = "0.6", default-features=false, features = ["getrandom"] }
tempdir = "0.3"
ark-vesta = "0.3"
[[bench]]
name = "plonk"
harness = false
[profile.bench]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = "thin"
opt-level = 3
overflow-checks = false
rpath = false