From 9f58be0bcb31edf37ab518fb38299aaa40a30e38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Aug 2023 05:29:44 +0000 Subject: [PATCH] build(deps): bump rustls from 0.21.6 to 0.21.7 Bumps [rustls](https://github.com/rustls/rustls) from 0.21.6 to 0.21.7. - [Release notes](https://github.com/rustls/rustls/releases) - [Commits](https://github.com/rustls/rustls/compare/v/0.21.6...v/0.21.7) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/cli/Cargo.toml | 2 +- crates/http/Cargo.toml | 2 +- crates/oidc-client/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b0e305f..629b1dc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4467,9 +4467,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.21.6" +version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb" +checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" dependencies = [ "log", "ring", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 3a68df91..6af82327 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -17,7 +17,7 @@ itertools = "0.11.0" listenfd = "1.0.1" rand.workspace = true rand_chacha = "0.3.1" -rustls = "0.21.6" +rustls = "0.21.7" serde_json.workspace = true serde_yaml = "0.9.25" sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres"] } diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 9a1a14e7..650941dd 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -16,7 +16,7 @@ hyper = "0.14.27" hyper-rustls = { version = "0.24.1", features = ["http1", "http2"], default-features = false, optional = true } once_cell = "1.18.0" opentelemetry = "0.20.0" -rustls = { version = "0.21.6", optional = true } +rustls = { version = "0.21.7", optional = true } rustls-native-certs = { version = "0.6.3", optional = true } serde.workspace = true serde_json.workspace = true diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index 80f4d335..430ffd8a 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -48,7 +48,7 @@ oauth2-types = { path = "../oauth2-types" } # Default http service http-body = { version = "0.4.5", optional = true } -rustls = {version = "0.21.6", optional = true } +rustls = {version = "0.21.7", optional = true } [dependencies.hyper-rustls] version = "0.24.1" features = ["http1", "http2", "rustls-native-certs"]