-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
101 lines (83 loc) · 2.33 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[package]
name = "experiments"
version = "0.1.0"
edition = "2018"
authors = [
"Pratyush Mishra",
"Ryan Lehmkuhl",
"Akshayaram Srinivasan",
"Wenting Zheng",
"Raluca Ada Popa",
]
description = "Experiments from the Delphi paper"
repository = "https://github.com/mc2/delphi"
keywords = ["cryptography", "finite fields", "garbled circuits", "secret sharing"]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"
[dependencies]
algebra = { path = "../algebra" }
bench-utils = { path = "../bench-utils" }
crypto-primitives = { path = "../crypto-primitives" }
neural-network = { path = "../neural-network" }
protocols = { path = "../protocols" }
protocols-sys = { path = "../protocols-sys" }
num-traits = { version = "0.2" }
rand = { version = "0.6" }
rand_chacha = { version = "0.1.1" }
crossbeam = "0.7.1"
tch = { version = "0.1.3" }
rayon = {version = "1.0"}
num_cpus = { version = "1.11.1" }
clap = "2.33.3"
ocelot = { version = "0.3", git = "https://github.com/GaloisInc/ocelot/" }
scuttlebutt = { version = "0.3", git = "https://github.com/GaloisInc/scuttlebutt/", features = [ "serde" ], tag = "0.3.2" }
io-utils = { git = "https://github.com/ryanleh/io-utils", branch = "main" }
[lib]
name = "experiments"
path = "src/lib.rs"
[[bin]]
name = "minionn-inference"
path = "src/inference/minionn/inference.rs"
[[bin]]
name = "minionn-accuracy"
path = "src/validation/minionn/validate.rs"
[[bin]]
name = "resnet32-client"
path = "src/latency/resnet32/client.rs"
[[bin]]
name = "resnet32-server"
path = "src/latency/resnet32/server.rs"
[[bin]]
name = "minionn-client"
path = "src/latency/minionn/client.rs"
[[bin]]
name = "minionn-server"
path = "src/latency/minionn/server.rs"
[[bin]]
name = "tput-client"
path = "src/throughput/linear_only/client.rs"
[[bin]]
name = "tput-server"
path = "src/throughput/linear_only/server.rs"
[[bin]]
name = "mnist-client"
path = "src/latency/mnist/client.rs"
[[bin]]
name = "mnist-server"
path = "src/latency/mnist/server.rs"
[[bin]]
name = "cg-client"
path = "src/latency/cg/client.rs"
[[bin]]
name = "cg-server"
path = "src/latency/cg/server.rs"
[[bin]]
name = "gc-client"
path = "src/latency/gc/client.rs"
[[bin]]
name = "gc-server"
path = "src/latency/gc/server.rs"
[features]
default = [ "timer" ]
timer = [ "protocols/timer" ]