-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
47 lines (41 loc) · 1.26 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
[package]
name = "curdleproofs"
version = "0.0.2"
authors = [
"George Kadianakis <asn@ethereum.org>",
"Mary Maller <mary.maller@ethereum.org>",
]
readme = "README.md"
license = "MIT"
repository = "https://github.com/asn-d6/curdleproofs"
categories = ["cryptography"]
keywords = ["cryptography", "crypto", "zero-knowledge"]
description = "An implementation of the Curdleproofs shuffle zero-knowledge argument"
edition = "2021"
[[bench]]
name = "perf"
harness = false
[dependencies]
criterion = { version = "0.3.5", features = ["html_reports"] }
merlin = "3.0.0"
ark-ec = "^0.4.0"
ark-ff = "^0.4.0"
ark-bls12-381 = "^0.4.0"
ark-std = "^0.4.0"
ark-serialize = { version = "^0.4.0", features = ["derive"] }
thiserror = "1.0.32"
hashbrown = "0.12.3"
serde = { version = "1.0.164", features = ["derive"] }
hex = { version = "0.4.3", features = ["serde"] }
[features]
default = ["asm", "parallel", "std"]
asm = ["ark-ff/asm"]
print-trace = ["ark-std/print-trace"]
parallel = ["std", "ark-ff/parallel", "ark-std/parallel", "ark-ec/parallel"]
std = ["ark-ff/std", "ark-ec/std", "ark-std/std", "ark-serialize/std"]
[dev-dependencies]
serde_json = "1.0.105"
serde_yaml = "0.9.21"
sha2 = "0.10.7"
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "doc/katex-header.html"]