mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-07 22:53:56 -05:00
30 lines
829 B
TOML
30 lines
829 B
TOML
[package]
|
|
name = "icicle-bw6-761"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
authors = [ "Ingonyama" ]
|
|
description = "Rust wrapper for the CUDA implementation of BN254 pairing friendly elliptic curve by Ingonyama"
|
|
homepage = "https://www.ingonyama.com"
|
|
repository = "https://github.com/ingonyama-zk/icicle"
|
|
|
|
[dependencies]
|
|
icicle-core = { path = "../../icicle-core" }
|
|
icicle-cuda-runtime = { path = "../../icicle-cuda-runtime" }
|
|
ark-bw6-761 = { version = "0.4.0", optional = true }
|
|
|
|
[build-dependencies]
|
|
cmake = "0.1.50"
|
|
|
|
[dev-dependencies]
|
|
ark-bw6-761 = "0.4.0"
|
|
ark-std = "0.4.0"
|
|
ark-ff = "0.4.0"
|
|
ark-ec = "0.4.0"
|
|
ark-poly = "0.4.0"
|
|
icicle-core = { path = "../../icicle-core", features = ["arkworks"] }
|
|
icicle-bw6-761 = { path = ".", features = ["arkworks"] }
|
|
|
|
[features]
|
|
default = []
|
|
arkworks = ["ark-bw6-761", "icicle-core/arkworks"]
|