halo2/Cargo.toml

65 lines
1.3 KiB
TOML
Raw Normal View History

2020-08-22 13:15:39 -07:00
[package]
name = "halo2"
version = "0.1.0-beta.1"
2020-08-22 13:15:39 -07:00
authors = [
"Sean Bowe <sean@electriccoin.co>",
"Ying Tong Lai <yingtong@electriccoin.co>",
2020-11-06 21:22:52 -08:00
"Daira Hopwood <daira@electriccoin.co>",
2020-11-10 08:52:41 -08:00
"Jack Grigg <jack@electriccoin.co>",
2020-08-22 13:15:39 -07:00
]
edition = "2018"
description = """
[BETA] Fast proof-carrying data implementation with no trusted setup
2020-08-22 13:15:39 -07:00
"""
license-file = "COPYING"
2021-02-26 02:23:55 -08:00
repository = "https://github.com/zcash/halo2"
2020-08-22 13:15:39 -07:00
documentation = "https://docs.rs/halo2"
readme = "README.md"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
2020-08-22 13:15:39 -07:00
[[bench]]
name = "arithmetic"
harness = false
[[bench]]
name = "hashtocurve"
harness = false
2020-10-13 14:06:21 -07:00
[[bench]]
name = "plonk"
harness = false
2020-08-22 13:15:39 -07:00
[dependencies]
backtrace = { version = "0.3", optional = true }
rayon = "1.5.1"
2021-09-02 14:51:25 -07:00
ff = "0.11"
group = "0.11"
pasta_curves = "0.2.1"
2021-02-17 12:42:27 -08:00
rand = "0.8"
blake2b_simd = "0.5"
# Developer tooling dependencies
plotters = { version = "0.3.0", optional = true }
tabbycat = { version = "0.1", features = ["attributes"], optional = true }
[dev-dependencies]
assert_matches = "1.5"
criterion = "0.3"
gumdrop = "0.8"
proptest = "1"
[features]
dev-graph = ["plotters", "tabbycat"]
gadget-traces = ["backtrace"]
sanity-checks = []
[lib]
bench = false
[[example]]
name = "circuit-layout"
required-features = ["dev-graph"]