-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
51 lines (46 loc) · 1.32 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
version = "0.0.0" # This version will be automatically updated
readme = "README.md"
name = "blitzar"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/spaceandtimelabs/blitzar-rs"
keywords = ["gpu-cryptography", "curve25519", "ristretto255", "bls12-381", "bn254"]
description = "High-Level Rust wrapper for the blitzar-sys crate "
exclude = [
"**/.gitignore",
".gitignore"
]
documentation = "https://docs.rs/blitzar"
[dependencies]
ark-bls12-381 = { version = "0.5.0" }
ark-bn254 = { version = "0.5.0" }
ark-ec = { version = "0.5.0" }
ark-ff = { version = "0.5.0" }
ark-grumpkin = { version = "0.5.0" }
ark-serialize = { version = "0.5.0" }
ark-std = { version = "0.5.0" }
rayon = { version = "1.5" }
blitzar-sys = { version = "1.81.0" }
curve25519-dalek = { version = "4", features = ["serde"] }
merlin = "2"
serde = { version = "1", features = ["serde_derive"] }
thiserror = "1"
# this sections is shared by tests, benchmarks, and examples
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
curve25519-dalek = { version = "4", features = ["rand_core"] }
rand = "0.8"
rand_core = "0.6"
tempfile = "3.13.0"
[[bench]]
harness = false
name = "blitzar_benchmarks"
[[bench]]
harness = false
name = "packed_msm_benchmarks"
[features]
cpu = []
default = ["gpu"]
gpu = []
arkworks = []