forked from zcash/halo2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (56 loc) · 1.48 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
[package]
name = "halo2"
version = "0.0.1"
authors = [
"Sean Bowe <[email protected]>",
"Ying Tong Lai <[email protected]>",
"Daira Hopwood <[email protected]>",
"Jack Grigg <[email protected]>",
]
edition = "2018"
description = """
Fast proof-carrying data implementation with no trusted setup
"""
license = "TGPPL"
repository = "https://github.com/zcash/halo2"
documentation = "https://docs.rs/halo2"
readme = "README.md"
# We are not publishing this yet.
publish = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "arithmetic"
harness = false
[[bench]]
name = "hashtocurve"
harness = false
[[bench]]
name = "plonk"
harness = false
[dependencies]
backtrace = { version = "0.3", optional = true }
crossbeam-utils = "0.8"
ff = "0.9"
group = "0.9"
num_cpus = "1.13"
rand = "0.8"
blake2b_simd = "0.5"
# Temporary workaround for https://github.com/myrrlyn/funty/issues/3
funty = "=1.1.0"
# Developer tooling dependencies
plotters = { version = "0.3.0", optional = true }
tabbycat = { version = "0.1", features = ["attributes"], optional = true }
[dependencies.pasta_curves]
git = "https://github.com/zcash/pasta_curves.git"
rev = "0a6b2f6eb5acbe1dabc9e77ed0bcb748cc640196"
[features]
dev-graph = ["plotters", "tabbycat"]
gadget-traces = ["backtrace"]
sanity-checks = []
[[example]]
name = "circuit-layout"
required-features = ["dev-graph"]