halo2/halo2_gadgets/Cargo.toml

72 lines
1.6 KiB
TOML
Raw Normal View History

2020-10-20 14:12:37 -07:00
[package]
name = "halo2_gadgets"
2022-06-23 10:41:52 -07:00
version = "0.2.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 = "2021"
rust-version = "1.56.1"
description = "Reusable gadgets and chip implementations for Halo 2"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zcash/halo2"
2020-10-20 14:12:37 -07:00
readme = "README.md"
categories = ["cryptography"]
2022-02-14 13:56:56 -08:00
keywords = ["halo", "proofs", "zcash", "zkp", "zkSNARKs"]
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"
2022-05-04 16:36:18 -07:00
bitvec = "1"
2022-12-05 20:55:21 -08:00
ff = "0.13"
group = "0.13"
2022-06-23 10:40:23 -07:00
halo2_proofs = { version = "0.2", path = "../halo2_proofs" }
lazy_static = "1"
2022-12-05 20:55:21 -08:00
pasta_curves = "0.5"
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.2" # MSRV 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", default-features = false, optional = true }
2021-02-08 14:56:58 -08:00
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-04-27 05:23:45 -07:00
pprof = { version = "0.8", features = ["criterion", "flamegraph"] } # MSRV 1.56
2020-10-20 15:18:25 -07:00
[lib]
bench = false
2021-03-19 22:19:51 -07:00
[features]
test-dev-graph = [
"halo2_proofs/dev-graph",
"plotters",
"plotters/bitmap_backend",
"plotters/bitmap_encoder",
]
test-dependencies = ["proptest"]
unstable = []
[[bench]]
name = "primitives"
harness = false
[[bench]]
name = "poseidon"
harness = false
[[bench]]
name = "sha256"
harness = false
required-features = ["unstable"]