forked from dusk-network/plonk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (46 loc) · 1.28 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
[package]
name = "dusk-plonk"
version = "0.6.1"
authors = ["Kevaundray Wedderburn <kevtheappdev@gmail.com>",
"Luke Pearson <luke@dusk.network>",
"CPerezz <carlos@dusk.network>"]
readme = "README.md"
repository = "https://github.com/dusk-network/plonk"
keywords = ["cryptography", "plonk", "zk-snarks", "zero-knowledge", "crypto"]
categories =["algorithms", "cryptography", "science"]
description = "A pure-Rust implementation of the PLONK ZK-Proof algorithm"
exclude = [
"**/.gitignore",
".gitignore",
"Cargo.lock",
"**/examples",
"benchmarks/",
".github/"
]
license = "MPL-2.0"
edition = "2018"
[dependencies]
merlin = "2.0.0"
rand = "0.7"
rand_core = {version="0.5", default-features=false}
dusk-bytes = "0.1"
dusk-bls12_381 = "0.6"
dusk-jubjub = "0.8"
itertools = "0.9.0"
rand_chacha = "0.2"
rayon = "1.3.0"
hashbrown = "0.9"
# Dusk related deps for WASMI serde
canonical = {version = "0.5", optional = true}
canonical_derive = {version = "0.5", optional = true}
[dev-dependencies]
tempdir = "0.3"
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]
[features]
default = ["std"]
std = []
nightly = []
trace = []
trace-print = ["trace"]
canon = ["dusk-bls12_381/canon", "dusk-jubjub/canon", "canonical", "canonical_derive"]