-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (53 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
57 lines (53 loc) · 1.3 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
[package]
name = "privacypass"
version = "0.2.0-pre.0"
edition = "2024"
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.89"
base64 = "0.22"
generic-array = "1.3.5"
rand = "0.8"
log = { version = "0.4", features = ["kv"] }
serde = "1"
sha2 = "0.10.9"
subtle = "2"
thiserror = "2"
tls_codec = { version = "0.4.2" }
tls_codec_derive = "0.4.2"
voprf = { version = "0.6.0-pre.0", features = ["serde"] }
p384 = { version = "0.13.0", default-features = false, features = [
"hash2curve",
"voprf",
] }
blind-rsa-signatures = "0.17"
http = "1"
typenum = "1"
nom = "8"
tokio = { version = "1", features = ["full"], optional = true }
trait-variant = "0.1.2"
[features]
default = []
kat = ["voprf/danger"]
test-utils = ["tokio"]
[dev-dependencies]
privacypass = { path = ".", features = ["kat", "test-utils"] }
futures = "0.3"
criterion = { version = "0.8.0", features = ["async_futures", "async_tokio"] }
hex = { version = "0.4.3", features = ["serde"] }
serde_json = "1.0"
[[bench]]
name = "benchmark"
harness = false