[package]
edition = "2024"
name = "cryprot-pprf"
version = "0.2.2"
authors = ["Robin Hundt"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of a distributed PPRF for Silent OT"
readme = "README.md"
keywords = [
"mpc",
"pprf",
"silent-ot",
]
license = "MIT"
repository = "https://github.com/robinhundt/CryProt"
resolver = "2"
[lib]
name = "cryprot_pprf"
path = "src/lib.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dependencies.aes]
version = "=0.9.0-rc.4"
[dependencies.bytemuck]
version = "1.25.0"
features = ["must_cast"]
[dependencies.cryprot-core]
version = "0.3.1"
features = [
"num-traits",
"tokio-rayon",
]
[dependencies.cryprot-net]
version = "0.2.2"
[dependencies.futures]
version = "0.3.32"
[dependencies.ndarray]
version = "0.17.2"
[dependencies.rand]
version = "0.10.0"
[dependencies.serde]
version = "1.0.203"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.37.0"
features = ["sync"]
[dependencies.tracing]
version = "0.1.40"
[dev-dependencies.criterion]
version = "0.8"
features = [
"async_tokio",
"html_reports",
]
[dev-dependencies.cryprot-core]
version = "0.3.1"
features = ["__testing"]
[dev-dependencies.cryprot-net]
version = "0.2.2"
features = ["__testing"]
[dev-dependencies.tokio]
version = "1.37.0"
features = ["full"]
[lints.clippy]
unwrap_used = "warn"