From 100aa0e739ab3c1f52a4a9c86838962214fa00e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:05:37 +0000 Subject: [PATCH] Update base64 requirement from 0.13 to 0.22 Updates the requirements on [base64](https://github.com/marshallpierce/rust-base64) to permit the latest version. - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.13.0...v0.22.1) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- sdk/core/Cargo.toml | 2 +- sdk/data_cosmos/Cargo.toml | 2 +- sdk/device_update/Cargo.toml | 2 +- sdk/identity/Cargo.toml | 2 +- sdk/iot_hub/Cargo.toml | 2 +- sdk/messaging_servicebus/Cargo.toml | 2 +- sdk/security_keyvault/Cargo.toml | 2 +- sdk/storage/Cargo.toml | 2 +- sdk/storage_blobs/Cargo.toml | 2 +- sdk/storage_datalake/Cargo.toml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sdk/core/Cargo.toml b/sdk/core/Cargo.toml index f7c4e8ba1c..10fab0a484 100644 --- a/sdk/core/Cargo.toml +++ b/sdk/core/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" [dependencies] async-trait = "0.1" -base64 = "0.13" +base64 = "0.22" bytes = "1.0" chrono = "0.4" dyn-clone = "1.0" diff --git a/sdk/data_cosmos/Cargo.toml b/sdk/data_cosmos/Cargo.toml index 04743e5133..3126531367 100644 --- a/sdk/data_cosmos/Cargo.toml +++ b/sdk/data_cosmos/Cargo.toml @@ -17,7 +17,7 @@ edition = "2021" [dependencies] async-trait = "0.1" azure_core = { path = "../core", version = "0.2" } -base64 = "0.13" +base64 = "0.22" chrono = "0.4" http = "0.2" futures = "0.3" diff --git a/sdk/device_update/Cargo.toml b/sdk/device_update/Cargo.toml index 7beca4fde7..44056505f3 100644 --- a/sdk/device_update/Cargo.toml +++ b/sdk/device_update/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT" edition = "2018" [dependencies] -base64 = "0.13" +base64 = "0.22" reqwest = { version = "0.11", features = ["json"], default_features=false } chrono = { version = "0.4", features = ["serde"] } const_format = "0.2" diff --git a/sdk/identity/Cargo.toml b/sdk/identity/Cargo.toml index 3220ecaa93..f6274aa63b 100644 --- a/sdk/identity/Cargo.toml +++ b/sdk/identity/Cargo.toml @@ -25,7 +25,7 @@ log = "0.4" async-timer = "1.0.0-beta.7" async-trait = "0.1" openssl = { version = "0.10", optional=true } -base64 = "0.13.0" +base64 = "0.22.1" uuid = { version = "1.0", features = ["v4"] } http = "0.2" # work around https://github.com/rust-lang/rust/issues/63033 diff --git a/sdk/iot_hub/Cargo.toml b/sdk/iot_hub/Cargo.toml index df5f260bfd..169a0efc5a 100644 --- a/sdk/iot_hub/Cargo.toml +++ b/sdk/iot_hub/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" [dependencies] azure_core = { path = "../core", version = "0.2" } -base64 = "0.13" +base64 = "0.22" bytes = "1.0" chrono = "0.4" hmac = "0.12" diff --git a/sdk/messaging_servicebus/Cargo.toml b/sdk/messaging_servicebus/Cargo.toml index f2de67ac92..e667d16da8 100644 --- a/sdk/messaging_servicebus/Cargo.toml +++ b/sdk/messaging_servicebus/Cargo.toml @@ -16,7 +16,7 @@ edition = "2021" [dependencies] azure_core = { path = "../core", version = "0.2" } -base64 = "0.13" +base64 = "0.22" chrono = "0.4" log = "0.4" url = "2.2" diff --git a/sdk/security_keyvault/Cargo.toml b/sdk/security_keyvault/Cargo.toml index e24010209f..0f40dc1fbe 100644 --- a/sdk/security_keyvault/Cargo.toml +++ b/sdk/security_keyvault/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT" edition = "2021" [dependencies] -base64 = "0.13" +base64 = "0.22" reqwest = { version = "0.11", features = ["json"] } chrono = { version = "0.4", features = ["serde"] } const_format = "0.2.13" diff --git a/sdk/storage/Cargo.toml b/sdk/storage/Cargo.toml index 6c593e9fbf..0ce21a2976 100644 --- a/sdk/storage/Cargo.toml +++ b/sdk/storage/Cargo.toml @@ -15,7 +15,7 @@ edition = "2021" [dependencies] async-trait = "0.1" azure_core = { path = "../core", version = "0.2", default-features=false } -base64 = "0.13" +base64 = "0.22" chrono = "0.4" http = "0.2" futures = "0.3" diff --git a/sdk/storage_blobs/Cargo.toml b/sdk/storage_blobs/Cargo.toml index 8d75db1ef5..6c524a091c 100644 --- a/sdk/storage_blobs/Cargo.toml +++ b/sdk/storage_blobs/Cargo.toml @@ -15,7 +15,7 @@ edition = "2021" [dependencies] azure_core = { path = "../core", version = "0.2", default-features=false } azure_storage = { path = "../storage", version = "0.2", default-features=false, features=["account"] } -base64 = "0.13" +base64 = "0.22" bytes = "1.0" chrono = { version = "0.4", features = ["serde"] } futures = "0.3" diff --git a/sdk/storage_datalake/Cargo.toml b/sdk/storage_datalake/Cargo.toml index 1576939521..b48e7c0afe 100644 --- a/sdk/storage_datalake/Cargo.toml +++ b/sdk/storage_datalake/Cargo.toml @@ -16,7 +16,7 @@ edition = "2021" async-trait = "0.1" azure_core = { path = "../core", version = "0.2" } azure_storage = { path = "../storage", version = "0.2" } -base64 = "0.13" +base64 = "0.22" bytes = "1.0" chrono = { version = "0.4", features = ["serde"] } futures = "0.3"