-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
56 lines (47 loc) · 875 Bytes
/
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
[package]
name = "mpc"
version = "0.0.1"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Ariel Gabizon <ariel@z.cash>",
"Matthew Green <mgreen@cs.jhu.edu>"
]
license = "MIT OR Apache-2.0"
readme = "README.md"
[[bin]]
name = "coordinator"
path = "src/coordinator.rs"
test = true
[[bin]]
name = "verifier"
path = "src/verifier.rs"
test = false
[[bin]]
name = "compute"
path = "src/compute.rs"
test = false
[[bin]]
name = "network"
path = "src/network.rs"
test = false
[features]
default = ["snark"]
[dependencies.snark]
path = "./snark/"
optional = true
[dependencies]
bn = "0.4.1"
crossbeam = "0.2.9"
rand = "0.3.14"
rustc-serialize = "~0.3.19"
blake2-rfc = "0.2.17"
byteorder = "0.5"
# Coordinator needs these
log = "*"
env_logger = "*"
time = "*"
ansi_term = "*"
[dependencies.bincode]
version = "0.6.0"
default-features = false
features = ["rustc-serialize"]