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
This commit is contained in:
committed by
Martin Algesten
parent
2c29cc230c
commit
ff0e91d33e
@@ -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 }
|
||||
|
||||
Reference in New Issue
Block a user