From 2563df4f62576627e9ffd1073aea5ed4ce9d4707 Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Sun, 19 Dec 2021 14:39:54 -0800 Subject: [PATCH] Bump rustls to >=0.20.1 Without this we get a build error because we depend on an impl of Error on InvalidDnsNameError. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4be2a5c..f5b3dff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ cookie_store = { version = "0.15", optional = true, default-features = false, fe log = "0.4" webpki = { version = "0.22", optional = true } webpki-roots = { version = "0.22", optional = true } -rustls = { version = "0.20", optional = true } +rustls = { version = ">=0.20.1", optional = true } rustls-native-certs = { version = "0.6", optional = true } native-tls = { version = "0.2", optional = true } flate2 = { version = "1.0.22", optional = true }