halo2/halo2_common/Cargo.toml

53 lines
1.4 KiB
TOML

[package]
name = "halo2_common"
version = "0.3.0"
authors = [
"Sean Bowe <sean@electriccoin.co>",
"Ying Tong Lai <yingtong@electriccoin.co>",
"Daira Hopwood <daira@electriccoin.co>",
"Jack Grigg <jack@electriccoin.co>",
"Privacy Scaling Explorations team"
]
edition = "2021"
rust-version = "1.66.0"
description = """
Halo2 frontend-backend common functions and types. This package is meant for internal usage only.
"""
license = "MIT OR Apache-2.0"
repository = "https://github.com/zcash/halo2"
documentation = "https://docs.rs/halo2_proofs"
readme = "README.md"
categories = ["cryptography"]
keywords = ["halo", "proofs", "zkp", "zkSNARKs"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
[dependencies]
group = "0.13"
halo2curves = { version = "0.6.0", default-features = false }
serde_derive = { version = "1", optional = true}
rayon = "1.8"
halo2_middleware = { path = "../halo2_middleware" }
# Legacy circuit compatibility
halo2_legacy_pdqsort = { version = "0.1.0", optional = true }
[dev-dependencies]
proptest = "1"
serde_json = "1"
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
[features]
default = ["bits"]
bits = ["halo2curves/bits"]
thread-safe-region = []
circuit-params = []
derive_serde = ["halo2curves/derive_serde"]
[lib]
bench = false