-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
53 lines (44 loc) · 1.17 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
[package]
name = "plonky2_monolith"
version = "0.1.0"
description = "Use Monolith hash to generate Plonky2 proofs and to write Plonky2 circuits"
edition = "2021"
license-file = "LICENSE-APACHE"
readme = "README.md"
authors = ["Markus Schofnegger", "Nicholas Mainardi"]
keywords = ["cryptography", "PLONK", "hash", "zero_knowledge"]
categories = ["cryptography"]
repository = "https://github.com/HorizenLabs/monolith"
exclude = ["ci/*", ".travis.yml", ".cargo/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
itertools = "0.11.0"
plonky2 = {version = "0.1.4", default-features = true}
rand_chacha = "0.3.1"
serde = "1.0.188"
unroll = "0.1.5"
[features]
default = ["default-sponge-params"]
default-sponge-params = []
[dev-dependencies]
log = "0.4.20"
rstest = "0.18.2"
serial_test = "2.0.0"
env_logger = "0.10.0"
criterion = "0.5.1"
tynm = "0.1.8"
[target.'cfg(not(target_env = "msvc"))'.dev-dependencies]
jemallocator = "0.5.0"
[[bench]]
name = "hashing"
harness = false
[[bench]]
name = "merkle"
harness = false
[[bench]]
name = "base_proof"
harness = false
[[bench]]
name = "recursion"
harness = false