Files
Sunscreen/logproof/Cargo.toml
rickwebiii 06e9c1cb2b Rweber/opencl (#230)
OpenCL implementation of curve25519 operations
2023-03-22 14:30:45 -07:00

33 lines
810 B
TOML

[package]
name = "logproof"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ark-poly = "0.4.0"
ark-ff = "0.4.0"
bitvec = "1.0.1"
curve25519-dalek = { path = "../sunscreen_curve25519", package = "sunscreen_curve25519", default-features = false, features = ["u64_backend", "serde", "alloc"] }
merlin = "3.0.0"
sha3 = "0.10.5"
digest = "0.10.5"
rand = "0.8.5"
rayon = "1.6.1"
serde = { version = "1.0.152", features = ["derive"] }
sunscreen_math = { path = "../sunscreen_math" }
[dev-dependencies]
bincode = "1.3.3"
criterion = "0.4.0"
[features]
default = []
opencl = ["sunscreen_math/opencl"]
metal = ["sunscreen_math/metal"]
pina = ["sunscreen_math/pina"]
[[bench]]
name = "linear_relation"
harness = false