halo2/halo2_gadgets/Cargo.toml

66 lines
1.5 KiB
TOML
Raw Normal View History

2020-10-20 14:12:37 -07:00
[package]
name = "halo2_gadgets"
version = "0.0.0"
2020-10-20 14:12:37 -07:00
authors = [
"Sean Bowe <sean@electriccoin.co>",
2020-10-20 15:03:33 -07:00
"Jack Grigg <jack@electriccoin.co>",
2021-12-17 14:10:35 -08:00
"Daira Hopwood <daira@jacaranda.org>",
"Ying Tong Lai <yingtong@electriccoin.co>",
"Kris Nuttycombe <kris@electriccoin.co>",
2020-10-20 14:12:37 -07:00
]
edition = "2018"
description = "[BETA] Reusable gadgets and chip implementations for Halo 2"
license-file = "../COPYING"
repository = "https://github.com/zcash/halo2"
2020-10-20 14:12:37 -07:00
readme = "README.md"
categories = ["cryptography"]
2021-12-17 14:10:35 -08:00
keywords = ["zcash"]
2020-10-20 14:12:37 -07:00
[package.metadata.docs.rs]
2021-12-17 14:08:58 -08:00
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "../katex-header.html"]
2020-10-20 15:18:25 -07:00
2020-10-20 15:18:40 -07:00
[dependencies]
arrayvec = "0.7.0"
bitvec = "0.22"
ff = "0.11"
group = "0.11"
2022-02-14 13:47:53 -08:00
halo2_proofs = { version = "=0.1.0-beta.2", path = "../halo2_proofs" }
lazy_static = "1"
pasta_curves = "0.3"
proptest = { version = "1.0.0", optional = true }
2021-04-14 21:13:41 -07:00
rand = "0.8"
2021-03-05 15:25:45 -08:00
subtle = "2.3"
uint = "=0.9.1" # uint 0.9.2 bumps the MSRV to 1.56.1
2021-03-05 15:25:45 -08:00
2021-02-08 14:56:58 -08:00
# Developer tooling dependencies
plotters = { version = "0.3.0", optional = true }
2020-10-20 15:18:25 -07:00
[dev-dependencies]
criterion = "0.3"
proptest = "1.0.0"
2020-10-20 15:18:25 -07:00
[target.'cfg(unix)'.dev-dependencies]
2022-01-04 23:36:45 -08:00
pprof = { version = "=0.6.1", features = ["criterion", "flamegraph"] }
2020-10-20 15:18:25 -07:00
[lib]
bench = false
2021-03-19 22:19:51 -07:00
[features]
dev-graph = ["halo2_proofs/dev-graph", "plotters"]
test-dependencies = ["proptest"]
unstable = []
[[bench]]
name = "primitives"
harness = false
[[bench]]
name = "poseidon"
harness = false
[[bench]]
name = "sha256"
harness = false
required-features = ["unstable"]