Fix certificate verifier

This commit is contained in:
Pascal Engélibert 2026-02-09 11:34:39 +01:00
commit 9e98cb5f39
3 changed files with 394 additions and 142 deletions

View file

@ -9,6 +9,7 @@ argp = "0.4.0"
env_logger = "0.11.8"
futures-util = "0.3.31"
log = "0.4.28"
rustls-platform-verifier = "0.6.2"
sslrelay = { path = "../sslrelay", optional = true }
static_cell = "2.1.1"
tokio = { version = "1.48.0", features = ["io-util", "macros", "net", "rt", "rt-multi-thread", "sync", "time"]}
@ -40,4 +41,8 @@ ring = ["tokio-rustls/ring"]
symcrypt = ["rustls-symcrypt"]
[profile.release]
#lto = "fat"
lto = "fat"
[patch.crates-io]
rustls = { path = "../rustls/rustls" }
rustls-platform-verifier = { path = "../rustls-platform-verifier/rustls-platform-verifier"}