-
Notifications
You must be signed in to change notification settings - Fork 34
/
Cargo.toml
86 lines (72 loc) · 1.55 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "accumulator"
version = "0.2.1"
edition = "2018"
authors = [
"Pablo Aldape <[email protected]>",
"Lucas Ege <[email protected]>",
"Alan Flores-Lopez <[email protected]>",
"Sanjay Kannan <[email protected]>",
"Michael Straka <[email protected]>",
"Eddie Wang <[email protected]>"
]
description = "Cryptographic accumulators in Rust."
keywords = ["cryptography", "crypto", "accumulator", "rsa", "vector", "commitment"]
readme = "README.md"
repository = "https://github.com/cambrian/accumulator"
[dependencies]
arrayref = "0.3.5"
blake2-rfc = "0.2.18"
curve25519-dalek = "1.1.3"
gmp-mpfr-sys = "1.1.12"
lazy_static = "1.3.0"
rug = "1.3.0"
[dev-dependencies]
criterion = "0.2.11"
rand = "0.6.5"
[[bench]]
name = "comparison"
path = "benches/group/rsa.rs"
harness = false
[[bench]]
name = "class"
path = "benches/group/class.rs"
harness = false
[[bench]]
name = "add"
path = "benches/accumulator/add.rs"
harness = false
[[bench]]
name = "delete"
path = "benches/accumulator/delete.rs"
harness = false
[[bench]]
name = "hashes"
path = "benches/hash/hashes.rs"
harness = false
[[bench]]
name = "primality"
path = "benches/hash/primality.rs"
harness = false
[[bench]]
name = "poe"
path = "benches/proof/poe.rs"
harness = false
[[bench]]
name = "pokcr"
path = "benches/proof/pokcr.rs"
harness = false
[[bench]]
name = "poke2"
path = "benches/proof/poke2.rs"
harness = false
[[bench]]
name = "uint"
path = "benches/uint.rs"
harness = false
[profile.bench]
opt-level = 3
debug = true
# Flamegraph debug symbols.
[profile.release]
debug = true