-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
47 lines (40 loc) · 1.13 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
[package]
name = "neural-network"
version = "0.1.0"
authors = [
"Pratyush Mishra",
"Ryan Lehmkuhl",
"Akshayaram Srinivasan",
"Wenting Zheng",
"Raluca Ada Popa",
]
description = "A library for convolutional neural networks as used in Delphi"
repository = "https://github.com/mc2/delphi"
keywords = ["cryptography", "finite fields", "machine learning", "neural networks"]
categories = ["cryptography", "machine learning"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"
edition = "2018"
[dependencies]
algebra = { path = "../algebra" }
crypto-primitives = { path = "../crypto-primitives" }
serde = { version = "1", features = [ "derive" ] }
ndarray = { version = "0.15.4", features = [ "serde-1" ] }
rand = { version = "0.6" }
npy = { version = "0.4" }
npy-derive = { version = "0.4" }
num-traits = { version = "0.2" }
tch = { version = "0.1.3" }
[dev-dependencies]
blake2 = "0.9"
criterion = "0.2"
rand_chacha = "0.1.1"
[[bench]]
name = "fully_connected"
harness = false
[[bench]]
name = "convolution"
harness = false
[[bench]]
name = "average_pooling"
harness = false