From ff0e91d33ec4d7e279ef491f94e9337728bb29d3 Mon Sep 17 00:00:00 2001 From: Malloc Voidstar <1284317+AlyoshaVasilieva@users.noreply.github.com> Date: Sat, 29 Jan 2022 07:13:36 -0800 Subject: [PATCH] Fix rustls version spec ">=0.20.1" doesn't have an upper bound and will accept 0.21 (and higher) once they're available. "0.20.1" means "^0.20.1", which means ">=0.20.1, <0.21". https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#caret-requirements --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6f21f10..c6767aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,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.1", 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 }