From 8932cabc9de88c1a0efef218644b5c5e66c8cc9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 13:59:52 +0000 Subject: [PATCH] chore(deps): 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.6...v0.22.0) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ibc-apps/ics721-nft-transfer/types/Cargo.toml | 2 +- ibc-clients/ics08-wasm/types/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ibc-apps/ics721-nft-transfer/types/Cargo.toml b/ibc-apps/ics721-nft-transfer/types/Cargo.toml index b63d0fb14..f2efb0d00 100644 --- a/ibc-apps/ics721-nft-transfer/types/Cargo.toml +++ b/ibc-apps/ics721-nft-transfer/types/Cargo.toml @@ -20,7 +20,7 @@ all-features = true [dependencies] # external dependencies borsh = { workspace = true, optional = true } -base64 = { version = "0.21.6", default-features = false } +base64 = { version = "0.22.0", default-features = false } derive_more = { workspace = true } displaydoc = { workspace = true } http = "1.0.0" diff --git a/ibc-clients/ics08-wasm/types/Cargo.toml b/ibc-clients/ics08-wasm/types/Cargo.toml index 1db31f114..be4b0d660 100644 --- a/ibc-clients/ics08-wasm/types/Cargo.toml +++ b/ibc-clients/ics08-wasm/types/Cargo.toml @@ -16,7 +16,7 @@ description = """ [dependencies] # external dependencies -base64 = { version = "0.21", default-features = false, features = ["alloc"] } +base64 = { version = "0.22", default-features = false, features = ["alloc"] } displaydoc = { workspace = true } serde = { workspace = true , optional = true } cosmwasm-schema = { version = "1.4.1", default-features = false, optional = true }