From 82b782547c0cefe48263d0fc69047b2fcb71cac3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Nov 2024 06:25:23 +0000 Subject: [PATCH] chore(deps): Bump rustls-native-certs from 0.7.0 to 0.8.0 (#18782) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 25 +++++++++++++++++++------ src/connector/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc5e89709fbf0..c626abbb66932 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1094,7 +1094,7 @@ dependencies = [ "rand", "regex", "ring 0.17.5", - "rustls-native-certs 0.7.0", + "rustls-native-certs 0.7.3", "rustls-pemfile 2.2.0", "rustls-webpki 0.102.2", "serde", @@ -10295,7 +10295,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls 0.22.4", - "rustls-native-certs 0.7.0", + "rustls-native-certs 0.7.3", "rustls-pemfile 2.2.0", "rustls-pki-types", "serde", @@ -11071,7 +11071,7 @@ dependencies = [ "risingwave_rpc_client", "rumqttc", "rust_decimal", - "rustls-native-certs 0.7.0", + "rustls-native-certs 0.8.0", "rustls-pemfile 2.2.0", "rustls-pki-types", "rw_futures_util", @@ -12358,7 +12358,7 @@ dependencies = [ "flume", "futures-util", "log", - "rustls-native-certs 0.7.0", + "rustls-native-certs 0.7.3", "rustls-pemfile 2.2.0", "rustls-webpki 0.102.2", "thiserror", @@ -12556,9 +12556,22 @@ dependencies = [ [[package]] name = "rustls-native-certs" -version = "0.7.0" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" +dependencies = [ + "openssl-probe", + "rustls-pemfile 2.2.0", + "rustls-pki-types", + "schannel", + "security-framework", +] + +[[package]] +name = "rustls-native-certs" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" +checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" dependencies = [ "openssl-probe", "rustls-pemfile 2.2.0", diff --git a/src/connector/Cargo.toml b/src/connector/Cargo.toml index 1e07780704da5..4a7493dd3dd9c 100644 --- a/src/connector/Cargo.toml +++ b/src/connector/Cargo.toml @@ -124,7 +124,7 @@ risingwave_pb = { workspace = true } risingwave_rpc_client = { workspace = true } rumqttc = { version = "0.24.0", features = ["url"] } rust_decimal = "1" -rustls-native-certs = "0.7" +rustls-native-certs = "0.8" rustls-pemfile = "2" rustls-pki-types = "1" rw_futures_util = { workspace = true }