-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
84 lines (80 loc) · 2.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "filecoin-proofs"
description = "The Filecoin specific aspects of storage-proofs, including a C based FFI, to generate and verify proofs."
version = "7.0.1"
authors = ["dignifiedquire <dignifiedquire@gmail.com>", "laser <l@s3r.com>", "porcuquine <porcuquine@users.noreply.github.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
repository = "https://github.com/filecoin-project/rust-fil-proofs"
readme = "README.md"
[dependencies]
storage-proofs-core = { path = "../storage-proofs-core", version = "^7.0.0", default-features = false}
storage-proofs-porep = { path = "../storage-proofs-porep", version = "^7.0.0", default-features = false }
storage-proofs-post = { path = "../storage-proofs-post", version = "^7.0.0", default-features = false }
filecoin-hashers = { version = "^2.0.0", path = "../filecoin-hashers", default-features = false, features = ["poseidon", "sha256"] }
bitvec = "0.17"
rand = "0.7"
lazy_static = "1.2"
memmap = "0.7"
byteorder = "1"
itertools = "0.9"
serde = { version = "1.0", features = ["rc", "derive"] }
serde_json = "1.0"
ff = { version = "0.2.3", package = "fff" }
blake2b_simd = "0.5"
bellperson = { version = "0.13", default-features = false }
log = "0.4.7"
fil_logger = "0.1"
rayon = "1.1.0"
blake2s_simd = "0.5.8"
hex = "0.4.0"
merkletree = "0.21.0"
bincode = "1.1.2"
anyhow = "1.0.23"
rand_xorshift = "0.2.0"
sha2 = "0.9.1"
typenum = "1.11.2"
gperftools = { version = "0.2", optional = true }
generic-array = "0.14.4"
groupy = "0.3.0"
byte-slice-cast = "1.0.0"
fr32 = { path = "../fr32", version = "^0.2.0", default-features = false }
[dev-dependencies]
criterion = "0.3"
rexpect = "0.4.0"
pretty_assertions = "0.6.1"
failure = "0.1.7"
tempfile = "3"
[features]
default = ["gpu", "pairing"]
cpu-profile = ["gperftools"]
heap-profile = ["gperftools/heap"]
simd = ["storage-proofs-core/simd"]
asm = ["storage-proofs-core/asm"]
gpu = [
"storage-proofs-core/gpu",
"storage-proofs-porep/gpu",
"storage-proofs-post/gpu",
"bellperson/gpu",
"filecoin-hashers/gpu",
"fr32/gpu",
]
pairing = [
"storage-proofs-core/pairing",
"storage-proofs-porep/pairing",
"storage-proofs-post/pairing",
"bellperson/pairing",
"filecoin-hashers/pairing",
"fr32/pairing",
]
blst = [
"storage-proofs-core/blst",
"storage-proofs-porep/blst",
"storage-proofs-post/blst",
"bellperson/blst",
"filecoin-hashers/blst",
"fr32/blst",
]
[[bench]]
name = "preprocessing"
harness = false