forked from zkcrypto/bellman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (43 loc) · 1.04 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
[package]
authors = ["Sean Bowe <[email protected]>"]
description = "zk-SNARK library"
readme = "README.md"
homepage = "https://github.com/zkcrypto/bellman"
license = "MIT/Apache-2.0"
name = "bellman"
repository = "https://github.com/zkcrypto/bellman"
version = "0.9.0"
edition = "2018"
[dependencies]
bitvec = "0.20"
blake2s_simd = "0.5"
ff = "0.9"
futures = "0.1"
futures-cpupool = { version = "0.1", optional = true }
group = "0.9"
num_cpus = { version = "1", optional = true }
crossbeam = { version = "0.7", optional = true }
pairing = { version = "0.19", optional = true }
rand_core = "0.6"
byteorder = "1"
subtle = "2.2.1"
[dev-dependencies]
bls12_381 = "0.4"
criterion = "0.3"
hex-literal = "0.3"
rand = "0.8"
rand_xorshift = "0.3"
sha2 = "0.9"
[features]
groth16 = ["pairing"]
multicore = ["futures-cpupool", "crossbeam", "num_cpus"]
default = ["groth16", "multicore"]
[[test]]
name = "mimc"
path = "tests/mimc.rs"
required-features = ["groth16"]
[[bench]]
name = "batch"
harness = false
[badges]
maintenance = { status = "actively-developed" }