From 12daef488e0ff6449f3f9cbe52766665978adc40 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 13:14:14 +0000 Subject: [PATCH] chore(deps): Bump yup-oauth2 from 8.3.0 to 11.0.0 Bumps [yup-oauth2](https://github.com/dermesser/yup-oauth2) from 8.3.0 to 11.0.0. - [Commits](https://github.com/dermesser/yup-oauth2/commits/v11.0.0) --- updated-dependencies: - dependency-name: yup-oauth2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 76 +++++++++++++++++++++++++++++++++++----- src/connector/Cargo.toml | 2 +- 2 files changed, 68 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b7cef1fcec2ff..f5d90c2524878 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2219,7 +2219,7 @@ dependencies = [ "bitflags 2.6.0", "cexpr", "clang-sys", - "itertools 0.10.5", + "itertools 0.12.1", "lazy_static", "lazycell", "log", @@ -5419,7 +5419,7 @@ dependencies = [ "tokio", "tokio-stream 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "url", - "yup-oauth2", + "yup-oauth2 8.3.2", ] [[package]] @@ -6058,6 +6058,24 @@ dependencies = [ "tower-service", ] +[[package]] +name = "hyper-rustls" +version = "0.27.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" +dependencies = [ + "futures-util", + "http 1.1.0", + "hyper 1.4.1", + "hyper-util", + "rustls 0.23.5", + "rustls-native-certs 0.8.0", + "rustls-pki-types", + "tokio", + "tokio-rustls 0.26.0", + "tower-service", +] + [[package]] name = "hyper-timeout" version = "0.4.1" @@ -9385,7 +9403,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" dependencies = [ "anyhow", - "itertools 0.10.5", + "itertools 0.12.1", "proc-macro2", "quote", "syn 2.0.66", @@ -10869,7 +10887,7 @@ dependencies = [ "walkdir", "with_options", "workspace-hack", - "yup-oauth2", + "yup-oauth2 11.0.0", ] [[package]] @@ -12342,6 +12360,19 @@ dependencies = [ "security-framework", ] +[[package]] +name = "rustls-native-certs" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" +dependencies = [ + "openssl-probe", + "rustls-pemfile 2.1.1", + "rustls-pki-types", + "schannel", + "security-framework", +] + [[package]] name = "rustls-pemfile" version = "1.0.4" @@ -16323,21 +16354,21 @@ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" [[package]] name = "yup-oauth2" -version = "8.3.0" +version = "8.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "364ca376b5c04d9b2be9693054e3e0d2d146b363819d0f9a10c6ee66e4c8406b" +checksum = "b61da40aeb0907a65f7fb5c1de83c5a224d6a9ebb83bf918588a2bb744d636b8" dependencies = [ "anyhow", "async-trait", - "base64 0.13.1", + "base64 0.21.7", "futures", "http 0.2.9", "hyper 0.14.27", "hyper-rustls 0.24.2", - "itertools 0.10.5", + "itertools 0.12.1", "log", "percent-encoding", - "rustls 0.21.11", + "rustls 0.22.4", "rustls-pemfile 1.0.4", "seahash", "serde", @@ -16348,6 +16379,33 @@ dependencies = [ "url", ] +[[package]] +name = "yup-oauth2" +version = "11.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ed5f19242090128c5809f6535cc7b8d4e2c32433f6c6005800bbc20a644a7f0" +dependencies = [ + "anyhow", + "async-trait", + "base64 0.22.0", + "futures", + "http 1.1.0", + "http-body-util", + "hyper 1.4.1", + "hyper-rustls 0.27.3", + "hyper-util", + "log", + "percent-encoding", + "rustls 0.23.5", + "rustls-pemfile 2.1.1", + "seahash", + "serde", + "serde_json", + "time", + "tokio", + "url", +] + [[package]] name = "z85" version = "3.0.5" diff --git a/src/connector/Cargo.toml b/src/connector/Cargo.toml index b3f104a5dbdd6..82bf293ff9620 100644 --- a/src/connector/Cargo.toml +++ b/src/connector/Cargo.toml @@ -177,7 +177,7 @@ url = "2" urlencoding = "2" uuid = { version = "1", features = ["v4", "fast-rng"] } with_options = { path = "./with_options" } -yup-oauth2 = "8.3" +yup-oauth2 = "11.0" [target.'cfg(not(madsim))'.dependencies] workspace-hack = { path = "../workspace-hack" }