-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
81 lines (76 loc) · 1.96 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
[package]
name = "filecoin-proofs"
description = "The Filecoin specific aspects of storage-proofs, including a C based FFI, to generate and verify proofs."
version = "1.0.0"
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 = "1.0.0", path = "../storage-proofs" }
bitvec = "0.17"
chrono = "0.4"
rand = "0.7"
lazy_static = "1.2"
memmap = "0.7"
colored = "1.6"
pbr = "1.0"
byteorder = "1"
itertools = "0.9"
serde_cbor = "0.10.2"
serde = { version = "1.0", features = ["rc", "derive"] }
serde_json = "1.0"
regex = "1"
ff = { version = "0.2.1", package = "fff" }
blake2b_simd = "0.5"
bellperson = "0.8.0"
paired = "0.19.0"
fil-sapling-crypto = "0.6.0"
clap = "2"
log = "0.4.7"
fil_logger = "0.1"
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"
blake2s_simd = "0.5.8"
hex = "0.4.0"
tee = "0.1.0"
os_pipe = "0.9.1"
merkletree = "0.19.0"
bincode = "1.1.2"
anyhow = "1.0.23"
rand_xorshift = "0.2.0"
typenum = "1.11.2"
bitintr = "0.3.0"
gperftools = { version = "0.2", optional = true }
phase2 = { package = "phase21", version = "0.6.0" }
simplelog = "0.7.4"
rand_chacha = "0.2.1"
dialoguer = "0.6.2"
generic-array = "0.13.2"
structopt = "0.3.12"
humansize = "1.1.0"
indicatif = "0.14.0"
[dependencies.reqwest]
version = "0.9"
default-features = false
features = ["default-tls-vendored"]
[dev-dependencies]
criterion = "0.3"
rexpect = "0.3.0"
pretty_assertions = "0.6.1"
failure = "0.1.7"
tempfile = "3"
[features]
default = ["gpu"]
cpu-profile = ["gperftools"]
heap-profile = ["gperftools/heap"]
simd = ["storage-proofs/simd"]
asm = ["storage-proofs/asm"]
gpu = ["storage-proofs/gpu", "bellperson/gpu", "fil-sapling-crypto/gpu"]
[[bench]]
name = "preprocessing"
harness = false