mirror of
https://github.com/pseXperiments/cuda-sumcheck.git
synced 2026-01-08 23:18:00 -05:00
24 lines
516 B
TOML
24 lines
516 B
TOML
[package]
|
|
name = "sumcheck"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
cudarc = { version = "0.11.3", features = ["cuda-version-from-build-system"] }
|
|
ff = "0.13.0"
|
|
rayon = "1.8"
|
|
itertools = "0.10.5"
|
|
halo2curves = { git = "https://github.com/privacy-scaling-explorations/halo2curves", tag = "0.3.3", package = "halo2curves" }
|
|
rand = "0.8"
|
|
num-integer = "0.1.45"
|
|
sha3 = "0.10.6"
|
|
num-bigint = "0.4.3"
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.66.1"
|
|
cc = "1.0.82"
|
|
regex = "1.9.3"
|