-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (69 loc) · 1.34 KB
/
Cargo.toml
File metadata and controls
85 lines (69 loc) · 1.34 KB
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
[package]
name = "silent_party"
authors = ["Matan Hamilis <matan.hamilis@gmail.com>"]
version = "0.1.0"
edition = "2021"
[dependencies]
aes = "0.8"
once_cell = "1.12"
rayon = "1.5.3"
curve25519-dalek = { version="3", features=["serde"]}
blake3 = "1"
rand_core = { version="0.6"}
rand = "0.8"
log = "0.4"
serde = { version = "1.0", features=["derive"]}
ciborium = "0.2"
serde-big-array = "0.4"
async-trait = "0.1"
tokio = { version = "1", features = ["full"]}
bincode = "1"
chacha20 = "0.9"
futures = "0.3"
aes-prng = "0.2"
tokio-tungstenite = "0.18"
url = { version = "2" }
bitvec= { version = "1", features = ["serde"] }
core_affinity = "0.8"
[dev-dependencies]
clap = { version="4", features = ["derive"]}
clap-verbosity-flag = "2"
criterion = {version = "0.4", features = ["async_tokio"]}
pretty_env_logger = "0.5.0"
indicatif = "0.17"
[features]
default = ["aesni"]
aesni = []
[[bench]]
name = "double_prg"
harness = false
[[bench]]
name = "mul_benchmark"
harness = false
[[bench]]
name = "circuit_eval"
harness = false
[[bench]]
name = "prf"
harness = false
[[bench]]
name = "hash"
harness = false
[[bench]]
name = "mem"
harness = false
[[bench]]
name = "spdz"
harness = false
[[bench]]
name = "parallel"
harness = false
[[bench]]
name = "zkfliop"
harness = false
[[bench]]
name = "mersenne_vs_bin"
harness = false
[[bench]]
name = "prg"
harness = false