-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 928 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 928 Bytes
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
[package]
description = "Implementation of a distributed PPRF for Silent OT"
edition = "2024"
keywords = ["mpc", "pprf", "silent-ot"]
license = "MIT"
name = "cryprot-pprf"
version = "0.2.2"
authors.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
aes.workspace = true
bytemuck.workspace = true
cryprot-core = { workspace = true, features = ["num-traits", "tokio-rayon"] }
cryprot-net.workspace = true
futures.workspace = true
ndarray.workspace = true
rand.workspace = true
serde = { workspace = true, features = ["derive"] }
thiserror.workspace = true
tokio = { workspace = true, features = ["sync"] }
tracing.workspace = true
[dev-dependencies]
criterion.workspace = true
cryprot-core = { workspace = true, features = ["__testing"] }
cryprot-net = { workspace = true, features = ["__testing"] }
tokio = { workspace = true, features = ["full"] }
[[bench]]
harness = false
name = "bench"