From 24338e8a25f02c9f9c12e76b2130525d1ccede1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 17:38:46 +0000 Subject: [PATCH] chore(deps): bump cosmwasm-std in /code/parachain/frame/cosmwasm/cli Bumps [cosmwasm-std](https://github.com/CosmWasm/cosmwasm) from 1.4.0 to 1.4.4. - [Release notes](https://github.com/CosmWasm/cosmwasm/releases) - [Changelog](https://github.com/CosmWasm/cosmwasm/blob/v1.4.4/CHANGELOG.md) - [Commits](https://github.com/CosmWasm/cosmwasm/compare/v1.4.0...v1.4.4) --- updated-dependencies: - dependency-name: cosmwasm-std dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- code/parachain/frame/cosmwasm/cli/Cargo.lock | 35 ++++++++++---------- code/parachain/frame/cosmwasm/cli/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/code/parachain/frame/cosmwasm/cli/Cargo.lock b/code/parachain/frame/cosmwasm/cli/Cargo.lock index 9377c7d0c7b..7fa24d9938b 100644 --- a/code/parachain/frame/cosmwasm/cli/Cargo.lock +++ b/code/parachain/frame/cosmwasm/cli/Cargo.lock @@ -554,9 +554,9 @@ dependencies = [ [[package]] name = "bnum" -version = "0.8.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "128a44527fc0d6abf05f9eda748b9027536e12dff93f5acc8449f51583309350" +checksum = "56953345e39537a3e18bdaeba4cb0c58a78c1f61f361dc0fa7c5c7340ae87c5f" [[package]] name = "bounded-collections" @@ -630,7 +630,7 @@ version = "0.1.0" dependencies = [ "clap", "cosmwasm-orchestrate", - "cosmwasm-std 1.4.0", + "cosmwasm-std 1.4.4", "frame-support", "hex", "jsonrpc", @@ -817,11 +817,12 @@ dependencies = [ [[package]] name = "cosmwasm-crypto" -version = "1.4.0" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ca101fbf2f76723711a30ea3771ef312ec3ec254ad021b237871ed802f9f175" +checksum = "e6b4c3f9c4616d6413d4b5fc4c270a4cc32a374b9be08671e80e1a019f805d8f" dependencies = [ "digest 0.10.7", + "ecdsa 0.16.8", "ed25519-zebra", "k256 0.13.1", "rand_core 0.6.4", @@ -838,9 +839,9 @@ dependencies = [ [[package]] name = "cosmwasm-derive" -version = "1.4.0" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c73d2dd292f60e42849d2b07c03d809cf31e128a4299a805abd6d24553bcaaf5" +checksum = "c586ced10c3b00e809ee664a895025a024f60d65d34fe4c09daed4a4db68a3f3" dependencies = [ "syn 1.0.109", ] @@ -884,7 +885,7 @@ dependencies = [ "hex", "schemars", "serde", - "serde-json-wasm 0.5.1 (git+https://github.com/dzmitry-lahoda-forks/serde-json-wasm?rev=8a7e522c0e4de36a6dfb535766f26a9941017d81)", + "serde-json-wasm 0.5.1", "sha2 0.10.7", "thiserror-core", "uint", @@ -892,20 +893,20 @@ dependencies = [ [[package]] name = "cosmwasm-std" -version = "1.4.0" +version = "1.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a44d3f9c25b2f864737c6605a98f2e4675d53fd8bbc7cf4d7c02475661a793d" +checksum = "9f42ebd3c7d99389efb7f326ecef7624e200ca1d49e20ac2bbb08ee570132832" dependencies = [ "base64 0.21.4", "bnum", - "cosmwasm-crypto 1.4.0", - "cosmwasm-derive 1.4.0", + "cosmwasm-crypto 1.5.4", + "cosmwasm-derive 1.5.4", "derivative", "forward_ref", "hex", "schemars", "serde", - "serde-json-wasm 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde-json-wasm 0.5.2", "sha2 0.10.7", "thiserror", ] @@ -3849,16 +3850,16 @@ dependencies = [ [[package]] name = "serde-json-wasm" version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16a62a1fad1e1828b24acac8f2b468971dade7b8c3c2e672bcadefefb1f8c137" +source = "git+https://github.com/dzmitry-lahoda-forks/serde-json-wasm?rev=8a7e522c0e4de36a6dfb535766f26a9941017d81#8a7e522c0e4de36a6dfb535766f26a9941017d81" dependencies = [ "serde", ] [[package]] name = "serde-json-wasm" -version = "0.5.1" -source = "git+https://github.com/dzmitry-lahoda-forks/serde-json-wasm?rev=8a7e522c0e4de36a6dfb535766f26a9941017d81#8a7e522c0e4de36a6dfb535766f26a9941017d81" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e9213a07d53faa0b8dd81e767a54a8188a242fdb9be99ab75ec576a774bfdd7" dependencies = [ "serde", ] diff --git a/code/parachain/frame/cosmwasm/cli/Cargo.toml b/code/parachain/frame/cosmwasm/cli/Cargo.toml index 070025c7716..1dc7327cb3e 100644 --- a/code/parachain/frame/cosmwasm/cli/Cargo.toml +++ b/code/parachain/frame/cosmwasm/cli/Cargo.toml @@ -7,7 +7,7 @@ description = "composable-cosmwasm, the foundation for wasm smart contracts." [dependencies] clap = { version = "4.0.32", features = ["derive"] } cosmwasm-orchestrate = { git = "https://github.com/ComposableFi/cosmwasm-vm" } -cosmwasm-std = "1.2.7" +cosmwasm-std = "1.4.4" frame-support = "21.0.0" hex = "0.4.3" jsonrpc = "0.16.0"