mirror of
https://github.com/privacy-scaling-explorations/halo2wrong.git
synced 2026-05-05 03:00:34 -04:00
* feat: upgrade `halo2_proofs` version to `v2023_04_20` * feat: support `circuit-params` feature flag
21 lines
498 B
TOML
21 lines
498 B
TOML
[package]
|
|
name = "maingate"
|
|
version = "0.1.0"
|
|
authors = ["kilic <kiliconu@itu.edu.tr>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
num-bigint = { version = "0.4", features = ["rand"] }
|
|
num-integer = "0.1"
|
|
num-traits = "0.2"
|
|
rand = "0.8"
|
|
subtle = { version = "2.3", default-features = false }
|
|
halo2wrong = { path = "../halo2wrong", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
rand_core = { version = "0.6", default-features = false }
|
|
|
|
[features]
|
|
default = []
|
|
circuit-params = ["halo2wrong/circuit-params"]
|