加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Cargo.toml 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
Konrad Kohbrok 提交于 2024-07-25 15:31 . downgrade_tls_codec
[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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化