From 9ab1cf36e70a8d11156aa0fa063914b582b28a60 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 07:53:13 +0000 Subject: [PATCH] build(deps): bump azure_identity from 0.20.0 to 0.21.0 Bumps [azure_identity](https://github.com/azure/azure-sdk-for-rust) from 0.20.0 to 0.21.0. - [Release notes](https://github.com/azure/azure-sdk-for-rust/releases) - [Changelog](https://github.com/Azure/azure-sdk-for-rust/blob/main/HISTORY.md) - [Commits](https://github.com/azure/azure-sdk-for-rust/commits/azure_identity-0.21.0) --- updated-dependencies: - dependency-name: azure_identity dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 37 ++++++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 33 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3c7f38f..35dc1de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -301,16 +301,43 @@ dependencies = [ "uuid", ] +[[package]] +name = "azure_core" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b552ad43a45a746461ec3d3a51dfb6466b4759209414b439c165eb6a6b7729e" +dependencies = [ + "async-trait", + "base64 0.22.1", + "bytes", + "dyn-clone", + "futures", + "getrandom 0.2.15", + "http-types", + "once_cell", + "paste", + "pin-project", + "rand 0.8.5", + "reqwest", + "rustc_version", + "serde", + "serde_json", + "time", + "tracing", + "url", + "uuid", +] + [[package]] name = "azure_identity" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72c97790480791ec1ee9b76f5c6499b1d0aac0d4cd1e62010bfc19bb545544c5" +checksum = "88ddd80344317c40c04b603807b63a5cefa532f1b43522e72f480a988141f744" dependencies = [ "async-lock", "async-process", "async-trait", - "azure_core", + "azure_core 0.21.0", "futures", "oauth2", "pin-project", @@ -328,7 +355,7 @@ version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab271a08c7532cfb08448a5e2633f8307c8fe4e207055d972c2bf24140fb06e0" dependencies = [ - "azure_core", + "azure_core 0.20.0", "bytes", "futures", "log", @@ -1630,7 +1657,7 @@ name = "pattrick" version = "0.3.7" dependencies = [ "async-recursion", - "azure_core", + "azure_core 0.20.0", "azure_identity", "azure_svc_batch", "base64 0.22.1", diff --git a/Cargo.toml b/Cargo.toml index 3d177b1..ffc5f8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" clap = { version = "4.5.20", features = ["derive", "cargo"] } tokio = { version = "^1.40.0", features = ["macros", "rt-multi-thread"] } azure_core = "^0.20" -azure_identity = "^0.20" +azure_identity = "^0.21" azure_svc_batch = "^0.20" url = "2.5.2" reqwest = { version = "0.12.8", features = ["json"] }