-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathCargo.toml
41 lines (37 loc) · 1.15 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 = "crypto-primitives"
version = "0.1.0"
edition = "2018"
authors = [
"Pratyush Mishra",
"Ryan Lehmkuhl",
"Akshayaram Srinivasan",
"Wenting Zheng",
"Raluca Ada Popa",
]
description = "Cryptographic primitives used in Delphi"
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" }
derivative = { version = "1" }
rand_core = { version = "0.4" }
rand_chacha = { version = "0.1.1" }
num-traits = { version = "0.2" }
arrayvec = { version = "0.5" }
serde = { version = "1", features = [ "derive" ] }
ndarray = { version = "0.15.4", features = [ "serde" ] }
fancy-garbling = { version = "0.3", git = "https://github.com/pratyush/fancy-garbling/", branch = "add-serde", features = [ "serde1" ] }
rand = { version = "0.6" }
[dev-dependencies]
rand = { version = "0.6" }
criterion = { version = "0.2.10" }
[[bench]]
name = "beavers_mul"
harness = false
[[bench]]
name = "garbling"
harness = false