forked from filecoin-project/bellperson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 779 Bytes
/
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
[package]
name = "bellperson"
authors = ["Sean Bowe <[email protected]>"]
description = "zk-SNARK library"
documentation = "https://docs.rs/bellperson"
homepage = "https://github.com/filecoin-project/bellman"
license = "MIT/Apache-2.0"
repository = "https://github.com/filecoin-project/bellman"
version = "0.3.2"
[dependencies]
rand = "0.4"
bit-vec = "0.5"
futures = "0.1"
futures-cpupool = "0.1"
num_cpus = "1"
crossbeam = "0.7"
byteorder = "1"
ff = "0.4.0"
paired = "0.15"
log = "0.4.8"
ocl = { git = "https://github.com/filecoin-project/ocl", branch = "master", optional = true }
itertools = { version = "0.8.0", optional = true }
lazy_static = { version = "1.4.0", optional = true }
[features]
default = []
gpu = ["ocl", "itertools", "lazy_static"]
gpu-test = ["gpu"]