forked from zkcrypto/bellman
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
53 lines (48 loc) · 1.34 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
52
53
[package]
name = "bellperson"
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
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.6.1"
readme = "README.md"
edition = "2018"
[dependencies]
bit-vec = "0.6"
blake2s_simd = "0.5"
ff = { version = "0.2.0", package = "fff" }
futures = "0.1"
futures-cpupool = { version = "0.1", optional = true }
groupy = "0.3.1"
num_cpus = { version = "1", optional = true }
crossbeam = { version = "0.7", optional = true }
paired = { version = "0.17.0", optional = true }
rand_core = "0.5"
byteorder = "1"
log = "0.4.8"
lazy_static = "1.4.0"
ocl = { version = "0.19.4", package = "fil-ocl", optional = true }
itertools = { version = "0.8.0", optional = true }
fs2 = { version = "0.4.3", optional = true }
rand = "0.7"
rayon = "1.3.0"
memmap = "0.7.0"
thiserror = "1.0.10"
[dev-dependencies]
hex-literal = "0.2"
rand_xorshift = "0.2"
sha2 = "0.8"
env_logger = "0.7.1"
[features]
default = ["groth16", "multicore"]
gpu = ["ocl", "itertools", "fs2"]
groth16 = ["paired"]
multicore = ["futures-cpupool", "crossbeam", "num_cpus"]
[[test]]
name = "mimc"
path = "tests/mimc.rs"
required-features = ["groth16"]
[badges]
maintenance = { status = "actively-developed" }