diff --git a/Cargo.lock b/Cargo.lock index dc0800b..deca660 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -964,28 +964,16 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.23.2" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" +checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" dependencies = [ + "futures-util", "http", "hyper", "log", - "rustls 0.20.8", - "rustls-native-certs", - "tokio", - "tokio-rustls 0.23.4", -] - -[[package]] -name = "hyper-rustls" -version = "0.24.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7" -dependencies = [ - "http", - "hyper", "rustls 0.21.1", + "rustls-native-certs", "tokio", "tokio-rustls 0.24.0", ] @@ -1398,7 +1386,7 @@ dependencies = [ "http", "http-body", "hyper", - "hyper-rustls 0.24.0", + "hyper-rustls", "ipnet", "js-sys", "log", @@ -1730,7 +1718,7 @@ dependencies = [ "clap", "env_logger", "futures", - "hyper-rustls 0.23.2", + "hyper-rustls", "log", "mktemp", "pem", diff --git a/Cargo.toml b/Cargo.toml index be83a02..f525345 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ pem = "3.0.2" reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false } tokio-tungstenite = { version = "0.18.0", features = ["__rustls-tls", "rustls-tls-native-roots"] } urlencoding = "2.1.3" -hyper-rustls = { version = "0.23.2", features = ["rustls-native-certs"] } +hyper-rustls = { version = "0.24.1", features = ["rustls-native-certs"] } bytes = "1.4.0" rustls-pemfile = "1.0.3" rustls = { version = "0.20.7", features = ["dangerous_configuration"] }