From c0e3b80218af228c352a944c251f2af36d456add Mon Sep 17 00:00:00 2001 From: Thomas Farr Date: Tue, 5 Mar 2024 10:52:04 +1300 Subject: [PATCH] Update base64 requirement from 0.21 to 0.22 (#242) (#243) * Update base64 requirement from 0.21 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.21.0...v0.22.0) Signed-off-by: Thomas Farr --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Update changelog Signed-off-by: dependabot[bot] --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] (cherry picked from commit 90cd340ee9decd27656efbbfd4eafad05fb00b7b) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- CHANGELOG.md | 1 + opensearch/Cargo.toml | 2 +- yaml_test_runner/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83fafa2e..2648b0c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Bumps `itertools` from 0.11.0 to 0.12.0 - Bumps `hyper` from 0.14 to 1 in tests ([#221](https://github.com/opensearch-project/opensearch-rs/pull/221)) - Bumps `sysinfo` from 0.29.0 to 0.30.5 +- Bumps `base64` from 0.21 to 0.22 ### Changed diff --git a/opensearch/Cargo.toml b/opensearch/Cargo.toml index 855145c3..4b1f8ff4 100644 --- a/opensearch/Cargo.toml +++ b/opensearch/Cargo.toml @@ -29,7 +29,7 @@ rustls-tls = ["reqwest/rustls-tls"] aws-auth = ["aws-credential-types", "aws-sigv4", "aws-smithy-runtime-api", "aws-types"] [dependencies] -base64 = "0.21" +base64 = "0.22" bytes = "1.0" dyn-clone = "1" lazy_static = "1.4" diff --git a/yaml_test_runner/Cargo.toml b/yaml_test_runner/Cargo.toml index ff4bcf98..c5dd5739 100644 --- a/yaml_test_runner/Cargo.toml +++ b/yaml_test_runner/Cargo.toml @@ -13,7 +13,7 @@ opensearch = { path = "../opensearch", features = ["experimental-apis"]} api_generator = { path = "./../api_generator" } anyhow = "1.0" -base64 = "0.21" +base64 = "0.22" clap = "2" itertools = "0.12.0" Inflector = "0.11.4"