Use rustls-platform-verifier for TLS certificate verification instead of webpki + Use aws-lc for cryptographic operations instead of ring

This commit is contained in:
Maurus Decimus
2026-04-04 12:23:30 +02:00
parent c44d3da6dc
commit 71f54f7e84
80 changed files with 1921 additions and 2198 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "http"
version = "0.15.5"
version = "0.16.0"
edition = "2024"
[dependencies]
@@ -24,7 +24,6 @@ smtp-proto = { version = "0.2" }
mail-parser = { version = "0.11", features = ["full_encoding", "rkyv"] }
mail-builder = { version = "0.4" }
mail-auth = { path = "/Users/me/code/mail-auth", features = ["generate"] }
mail-send = { version = "0.5", default-features = false, features = ["cram-md5", "ring", "tls12"] }
tokio = { version = "1.47", features = ["rt"] }
hyper = { version = "1.0.1", features = ["server", "http1", "http2"] }
hyper-util = { version = "0.1.1", features = ["tokio"] }
@@ -38,8 +37,8 @@ chrono = "0.4"
base64 = "0.22"
pkcs8 = { version = "0.10.2", features = ["alloc", "std"] }
rsa = "0.9.2"
sha1 = "0.10"
sha2 = "0.10"
sha1 = "0.11"
sha2 = "0.11"
rkyv = { version = "0.8.10", features = ["little_endian"] }
form-data = { version = "0.6.0", features = ["sync"], default-features = false }
mime = "0.3.17"