From 20ff72a2abe5c5c3c9372648678b14117df87c91 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 11:25:04 +0000 Subject: [PATCH] fix(deps): update rust crate rustls-native-certs to 0.8.0 --- Cargo.lock | 36 +++++++++++++++++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9df6d686..d9954513 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -867,6 +867,16 @@ dependencies = [ "libc", ] +[[package]] +name = "core-foundation" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "core-foundation-sys" version = "0.8.7" @@ -2674,20 +2684,19 @@ dependencies = [ "openssl-probe", "rustls-pemfile 1.0.4", "schannel", - "security-framework", + "security-framework 2.11.1", ] [[package]] name = "rustls-native-certs" -version = "0.7.3" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" +checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" dependencies = [ "openssl-probe", - "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", - "security-framework", + "security-framework 3.0.1", ] [[package]] @@ -2793,7 +2802,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ "bitflags", - "core-foundation", + "core-foundation 0.9.4", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1415a607e92bec364ea2cf9264646dcce0f91e6d65281bd6f2819cca3bf39c8" +dependencies = [ + "bitflags", + "core-foundation 0.10.0", "core-foundation-sys", "libc", "security-framework-sys", @@ -3314,7 +3336,7 @@ dependencies = [ "lambda_http", "lazy_static", "reqwest", - "rustls-native-certs 0.7.3", + "rustls-native-certs 0.8.1", "serde", "serde_json", "sqlx", diff --git a/Cargo.toml b/Cargo.toml index bd347f2c..98590f78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ hyper-util = { version = "0.1.1", features = [ "server", "server-auto", ] } -rustls-native-certs = "0.7.0" +rustls-native-certs = "0.8.0" jemallocator = "0.5.4" lambda_http = "0.11.1"