From 63294d38175686b45b9ca8cbfc15d075f522514f Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Thu, 24 Aug 2023 12:51:01 -0700 Subject: [PATCH] Switching to rustls-webpki Addressing https://rustsec.org/advisories/RUSTSEC-2023-0052 by switching to the recommended fork. --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fe60f6d..b14c6f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,9 @@ trust-dns-resolver = { version = "0.23.0", default-features = false, optional = "tokio-runtime", ] } url = "2" -webpki = { version = "0.22", default-features = false, features = ["std"] } +rustls-webpki = { version = "0.101.4", default-features = false, features = [ + "std", +] } webpki-roots = "0.25.2" rustls-native-certs = "0.6" x509-parser = "0.15.0"