forked from filecoin-project/rust-fil-proofs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (58 loc) · 1.51 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
[package]
name = "filecoin-proofs"
description = "The Filecoin specific aspects of storage-proofs, including a C based FFI, to generate and verify proofs."
version = "0.6.4"
authors = ["dignifiedquire <[email protected]>", "laser <[email protected]>", "porcuquine <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2018"
repository = "https://github.com/filecoin-project/rust-fil-proofs"
readme = "README.md"
[dependencies]
storage-proofs = { version = "^0.6", path = "../storage-proofs" }
bitvec = "0.5"
chrono = "0.4"
rand = "0.4"
failure = "0.1"
lazy_static = "1.2"
memmap = "0.7"
colored = "1.6"
pbr = "1.0"
tempfile = "3"
byteorder = "1"
itertools = "0.8"
serde_cbor = "0.9.0"
serde = { version = "1", features = ["rc", "derive"] }
serde_json = "1.0"
regex = "1"
ff = "0.4.0"
blake2b_simd = "0.5"
phase21 = "0.3"
bellperson = "0.3"
paired = "0.15"
fil-sapling-crypto = "0.1.2"
clap = "2"
log = "0.4.7"
pretty_env_logger = "0.3.0"
env_proxy = "0.3"
os_type = "2.2.0"
flate2 = { version = "1.0.9", features = ["rust_backend"]}
tar = "0.4.26"
rayon = "1.1.0"
[dependencies.reqwest]
version = "0.9"
default-features = false
features = ["default-tls-vendored"]
[dev-dependencies]
gperftools = "0.2"
criterion = "0.2"
rexpect = "0.3.0"
[features]
default = []
cpu-profile = []
heap-profile = ["gperftools/heap"]
simd = ["storage-proofs/simd"]
asm = ["storage-proofs/asm"]
gpu = ["storage-proofs/gpu", "bellperson/gpu", "fil-sapling-crypto/gpu", "phase21/gpu"]
[[bench]]
name = "preprocessing"
harness = false