From 1719621f40e7e5ed54d3deeae81a915ed289b3b3 Mon Sep 17 00:00:00 2001 From: suryapandian Date: Sun, 22 Mar 2026 17:44:46 +0000 Subject: [PATCH] Fix RUSTSEC-2026-0049: update rustls-webpki to 0.103.10 --- actix-tls/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 00d5d44b..c54d41a2 100644 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -20,7 +20,7 @@ allowed_external_types = ["actix_service::*", "actix_utils::*", "futures_core::* [package.metadata.cargo-machete] ignored = [ "rustls_021", # specified to force version with add_trust_anchors method - "rustls_webpki_0101", # specified to force secure version + "rustls_webpki_0103", # specified to force secure version ] [features] @@ -112,7 +112,7 @@ tokio-native-tls = { version = "0.3", optional = true } [target.'cfg(any())'.dependencies] rustls-021 = { package = "rustls", version = "0.21.6", optional = true } # force version with add_trust_anchors method -rustls-webpki-0101 = { package = "rustls-webpki", version = "0.101.4", optional = true } # force secure version +rustls-webpki-0103 = { package = "rustls-webpki", version = "0.103.10", optional = true } # force secure version [dev-dependencies] actix-codec = "0.5"