From d1e2eec9b60f5178a8850290ee99c39e42e18b15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Jul 2023 19:39:34 +0000 Subject: [PATCH] build(deps): bump hyper-rustls from 0.24.0 to 0.24.1 Bumps [hyper-rustls](https://github.com/rustls/hyper-rustls) from 0.24.0 to 0.24.1. - [Release notes](https://github.com/rustls/hyper-rustls/releases) - [Commits](https://github.com/rustls/hyper-rustls/compare/v/0.24.0...v/0.24.1) --- updated-dependencies: - dependency-name: hyper-rustls dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 +++-- crates/http/Cargo.toml | 2 +- crates/oidc-client/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8cabbed8..c34198a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2668,10 +2668,11 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.24.0" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7" +checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" dependencies = [ + "futures-util", "http", "hyper", "rustls 0.21.2", diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index e3aac600..d8f65b5c 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -15,7 +15,7 @@ headers = "0.3.8" http = "0.2.9" http-body = "0.4.5" hyper = "0.14.27" -hyper-rustls = { version = "0.24.0", features = ["http1", "http2"], default-features = false, optional = true } +hyper-rustls = { version = "0.24.1", features = ["http1", "http2"], default-features = false, optional = true } once_cell = "1.18.0" opentelemetry = "0.19.0" rustls = { version = "0.21.2", optional = true } diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index 3f3ad082..8b393b56 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -50,7 +50,7 @@ oauth2-types = { path = "../oauth2-types" } http-body = { version = "0.4.5", optional = true } rustls = {version = "0.21.2", optional = true } [dependencies.hyper-rustls] -version = "0.24.0" +version = "0.24.1" features = ["http1", "http2", "rustls-native-certs"] default-features = false optional = true