mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-09 13:07:59 -05:00
## Describe the changes This PR: - Moves common crate attributes to the workspace Cargo.toml. - Adds a manual release flow for bumping, tagging, and draft release
32 lines
937 B
TOML
32 lines
937 B
TOML
[package]
|
|
name = "icicle-bw6-761"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
description = "Rust wrapper for the CUDA implementation of BW6-761 pairing friendly elliptic curve by Ingonyama"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
icicle-core = { workspace = true }
|
|
icicle-cuda-runtime = { workspace = true }
|
|
icicle-bls12-377 = { path = "../../icicle-curves/icicle-bls12-377", features = ["bw6-761"] }
|
|
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 = []
|
|
g2 = ["icicle-bls12-377/bw6-761-g2"]
|
|
arkworks = ["ark-bw6-761", "icicle-core/arkworks", "icicle-bls12-377/arkworks"]
|