orchard/halo2-gadgets/halo2_ecc/Cargo.toml

35 lines
784 B
TOML

[package]
name = "halo2_ecc"
version = "0.0.0"
authors = [
"Sean Bowe <sean@electriccoin.co>",
"Jack Grigg <jack@electriccoin.co>",
]
edition = "2018"
description = "ECC gadget for halo2"
license-file = "LICENSE-BOSL"
repository = "https://github.com/zcash/orchard"
documentation = "https://docs.rs/orchard"
readme = "README.md"
# We are not publishing this yet.
publish = false
[dependencies]
arrayvec = "0.7.0"
bigint = "4"
ff = "0.11"
group = "0.11"
halo2 = "=0.1.0-beta.1"
lazy_static = "1"
pasta_curves = "0.2.1"
rand = "0.8"
utilities = { package = "halo2_utilities", version = "0.0", path = "../halo2_utilities" }
# Developer tooling dependencies
plotters = { version = "0.3.0", optional = true }
[features]
dev-graph = ["halo2/dev-graph", "plotters"]
testing = []