-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
52 lines (48 loc) · 1.16 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
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "privacypass"
version = "0.2.0-pre.0"
edition = "2021"
description = "Implementation of Privacy Pass"
license = "MIT"
documentation = "https://docs.rs/privacypass"
repository = "https://github.com/raphaelrobert/privacypass"
readme = "README.md"
keywords = [
"privacy pass",
"privacypass",
"privacy",
"pass",
"ietf privacypass",
]
categories = ["cryptography", "privacy"]
[dependencies]
async-trait = "0.1.56"
base64 = "0.22.0"
generic-array = "0.14.5"
rand = "0.8.5"
serde = "1"
sha2 = "0.10.2"
thiserror = "1"
tls_codec = { version = "0.4.1" }
tls_codec_derive = "0.4.1"
voprf = { version = "0.5", features = ["serde"] }
p384 = { version = "0.13.0", default-features = false, features = [
"hash2curve",
"voprf",
] }
blind-rsa-signatures = "0.15.0"
http = "1"
typenum = "1.15.0"
nom = "7"
[features]
default = []
kat = ["voprf/danger"]
[dev-dependencies]
privacypass = { path = ".", features = ["kat"] }
tokio = { version = "1.20.0", features = ["full"] }
criterion = { version = "0.5.0", features = ["async_futures", "async_tokio"] }
hex = { version = "0.4.3", features = ["serde"] }
serde_json = "1.0"
[[bench]]
name = "benchmark"
harness = false