-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
41 lines (37 loc) · 1.37 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
[package]
name = "protocols"
version = "0.1.0"
edition = "2018"
authors = [
"Pratyush Mishra",
"Ryan Lehmkuhl",
"Akshayaram Srinivasan",
"Wenting Zheng",
"Raluca Ada Popa",
]
description = "Cryptographic protocols for linear, ReLU, and quadratic activations used in Delphi"
repository = "https://github.com/mc2/delphi"
keywords = ["cryptography", "finite fields", "garbled circuits", "secret sharing", "neural networks"]
categories = ["cryptography", "machine learning"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"
[dependencies]
num-traits = { version = "0.2.6"}
bench-utils = { path = "../bench-utils" }
algebra = { path = "../algebra" }
protocols-sys = { path = "../protocols-sys" }
ndarray = { version = "0.15.4", features = [ "serde-1" ] }
crypto-primitives = { path = "../crypto-primitives" }
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" }
rayon = { version = "1" }
neural-network = { path = "../neural-network" }
rand = { version = "0.6" }
bincode = "1.0"
serde = "1.0"
crossbeam = "0.7.1"
io-utils = { git = "https://github.com/ryanleh/io-utils", branch = "main" }
[dev-dependencies]
rand_chacha = { version = "0.1.1" }
[features]
timer = ["bench-utils/timer"]