mirror of
https://github.com/Dhole/polyexen.git
synced 2026-01-10 05:18:04 -05:00
29 lines
1.0 KiB
TOML
29 lines
1.0 KiB
TOML
[package]
|
|
name = "polyexen"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# crypto-bigint = "0.4.8"
|
|
num-bigint = { version = "0.4", features = [ "rand" ] }
|
|
num-traits = "0.2"
|
|
num-integer = "0.1"
|
|
rand = "0.8.5"
|
|
rand_chacha = "0.3.1"
|
|
nom = "7"
|
|
pest = "2.5"
|
|
pest_derive = "2.4"
|
|
lazy_static = "1.4"
|
|
# Uncomment with the next release
|
|
# halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", features = ["circuit-params"], tag = "v2023_04_20" }
|
|
# halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", features = ["circuit-params"], rev = "d3746109d7d38be53afc8ddae8fdfaf1f02ad1d7" }
|
|
# branch kilic:shuffle
|
|
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2", features = ["circuit-params"], tag = "v0.3.0" }
|
|
log = "0.4.14"
|
|
static_assertions = "1.1.0"
|
|
|
|
# [patch."https://github.com/privacy-scaling-explorations/halo2.git"]
|
|
# halo2_proofs = { path = "../halo2/halo2_proofs" }
|