mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-05-01 03:00:14 -04:00
43 lines
937 B
TOML
43 lines
937 B
TOML
[package]
|
|
name = "icicle-utils"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = [ "Ingonyama" ]
|
|
description = "An implementation of the Ingonyama CUDA Library"
|
|
homepage = "https://www.ingonyama.com"
|
|
repository = "https://github.com/ingonyama-zk/icicle"
|
|
|
|
[[bench]]
|
|
name = "ntt"
|
|
path = "benches/ntt.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "msm"
|
|
path = "benches/msm.rs"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
hex = "*"
|
|
ark-std = "0.3.0"
|
|
ark-ff = "0.3.0"
|
|
ark-poly = "0.3.0"
|
|
ark-ec = { version = "0.3.0", features = [ "parallel" ] }
|
|
ark-bls12-381 = { version = "0.3.0", optional = true }
|
|
|
|
rustacuda = "0.1"
|
|
rustacuda_core = "0.1"
|
|
rustacuda_derive = "0.1"
|
|
|
|
rand = "*" #TODO: move rand and ark dependencies to dev once random scalar/point generation is done "natively"
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0", features = ["parallel"] }
|
|
|
|
[dev-dependencies]
|
|
"criterion" = "0.4.0"
|
|
|
|
[features]
|
|
default = ["bls12_381"]
|
|
bls12_381 = ["ark-bls12-381/curve"]
|