From 9a7cc14c94f2587a8a794900dea2ba5665c4aa04 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 28 Jun 2023 07:56:21 +1000 Subject: [PATCH] Update rustls dependency to version 0.21 Update to the latest version of `rustls`. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d62030b..2b332ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ serde_json = { version = "^1.0" } # Optional dependencies openssl = { version = "0.10", optional = true } -rustls = { version = "0.20", optional = true, features = ["dangerous_configuration"] } +rustls = { version = "0.21", optional = true, features = ["dangerous_configuration"] } webpki = { version = "0.22", optional = true } webpki-roots = { version = "0.22", optional = true }