-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
36 lines (33 loc) · 1.02 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
[package]
name = "ppoprf"
version = "0.3.1"
authors = ["Alex Davidson <coela@alxdavids.xyz>", "Ralph Ankele <rankele@brave.com>"]
description = "Puncturable Partially-Oblivious Pseudo-Random Function"
documentation = "https://docs.rs/ppoprf"
repository = "https://github.com/brave/sta-rs"
keywords = ["crypto", "oprf", "protocol"]
categories = ["cryptography"]
license = "MPL-2.0"
edition = "2021"
[dependencies]
rand = { version = "0.8.5", features = [ "getrandom" ] }
bitvec = "1.0.1"
curve25519-dalek = { version = "4.0.0", features = [ "rand_core", "serde" ] }
serde = "1.0.147"
strobe-rs = "0.8.1"
base64 = "0.13.0"
bincode = "1.3.3"
derive_more = "0.99"
zeroize = { version = "1.5.5", features = [ "derive" ] }
rand_core = "0.6.4"
[dev-dependencies]
criterion = "0.5.1"
env_logger = "0.11.3"
log = "0.4.21"
reqwest = { version = "0.12.3", features = [ "blocking", "json" ] }
dotenvy = "0.15.7"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "time"] }
warp = "0.3.7"
[[bench]]
name = "bench"
harness = false