diff --git a/Cargo.lock b/Cargo.lock index 0d49ad92..286847e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -61,6 +61,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + [[package]] name = "base64ct" version = "1.6.0" @@ -86,7 +92,7 @@ checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445" name = "bindings-test" version = "1.0.0" dependencies = [ - "base64", + "base64 0.22.1", "chrono", "cosmwasm-std", "desmos-bindings", @@ -244,7 +250,7 @@ version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712fe58f39d55c812f7b2c84e097cdede3a39d520f89b6dc3153837e31741927" dependencies = [ - "base64", + "base64 0.21.7", "bech32", "bnum", "cosmwasm-crypto", @@ -433,7 +439,7 @@ dependencies = [ name = "desmos-bindings" version = "3.0.0" dependencies = [ - "base64", + "base64 0.22.1", "chrono", "cosmwasm-schema", "cosmwasm-std", diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index 7dad2533..4518380a 100644 --- a/packages/bindings-test/Cargo.toml +++ b/packages/bindings-test/Cargo.toml @@ -12,6 +12,6 @@ desmos-bindings = { path = "../bindings", version = "3.0.0" } test-contract = { path = "../../contracts/test-contract", version = "1.0.0" } serde = "1.0.197" serde_json = "1.0.114" -base64 = "0.21.7" +base64 = "0.22.1" chrono = "0.4.38" diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index c5984959..7b163fe1 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -31,7 +31,7 @@ serde-cw-value = "0.7.0" desmos-mock = { version = "3.0.0", path = "../mock" } schemars = "0.8.16" strum_macros = "0.26.1" -base64 = "0.21.7" +base64 = "0.22.1" desmos-std-derive = {version = "3.0.0", path = "../std-derive"} [target.'cfg(not(target_arch = "wasm32"))'.dependencies]