From b2e2c3552d604b6b6e02cb79cbe489c435ae1419 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Aug 2023 18:15:02 +0000 Subject: [PATCH] Bump cosmwasm-std from 1.2.1 to 1.3.3 in /cosmwasm Bumps [cosmwasm-std](https://github.com/CosmWasm/cosmwasm) from 1.2.1 to 1.3.3. - [Release notes](https://github.com/CosmWasm/cosmwasm/releases) - [Changelog](https://github.com/CosmWasm/cosmwasm/blob/main/CHANGELOG.md) - [Commits](https://github.com/CosmWasm/cosmwasm/compare/v1.2.1...v1.3.3) --- updated-dependencies: - dependency-name: cosmwasm-std dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- cosmwasm/Cargo.lock | 44 ++++++------------- .../contracts/price-feed-helper/Cargo.toml | 2 +- cosmwasm/contracts/price-feed/Cargo.toml | 2 +- cosmwasm/contracts/price-query/Cargo.toml | 2 +- 4 files changed, 16 insertions(+), 34 deletions(-) diff --git a/cosmwasm/Cargo.lock b/cosmwasm/Cargo.lock index a24ad53..7a651a8 100644 --- a/cosmwasm/Cargo.lock +++ b/cosmwasm/Cargo.lock @@ -49,6 +49,12 @@ dependencies = [ "generic-array", ] +[[package]] +name = "bnum" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "845141a4fade3f790628b7daaaa298a25b204fb28907eb54febe5142db6ce653" + [[package]] name = "byteorder" version = "1.4.3" @@ -69,9 +75,9 @@ checksum = "cec318a675afcb6a1ea1d4340e2d377e56e47c266f28043ceccbf4412ddfdd3b" [[package]] name = "cosmwasm-crypto" -version = "1.2.1" +version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fecd74d3a0041114110d1260f77fcb644c5d2403549b37096c44f0e643a5177" +checksum = "871ce1d5a4b00ed1741f84b377eec19fadd81a904a227bc1e268d76539d26f5e" dependencies = [ "digest 0.10.6", "ed25519-zebra", @@ -82,9 +88,9 @@ dependencies = [ [[package]] name = "cosmwasm-derive" -version = "1.2.1" +version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5abeeb891e6d0098402e4d3d042f90451db52651d2fe14b170e69a1dd3e4115" +checksum = "7ce8b44b45a7c8c6d6f770cd0a51458c2445c7c15b6115e1d215fa35c77b305c" dependencies = [ "syn", ] @@ -115,11 +121,12 @@ dependencies = [ [[package]] name = "cosmwasm-std" -version = "1.2.1" +version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5034c772c1369b160731aa00bb81f93733ab2884928edd8d588733d607ac5af4" +checksum = "da78abcf059181e8cb01e95e5003cf64fe95dde6c72b3fe37e5cabc75cdba32a" dependencies = [ "base64", + "bnum", "cosmwasm-crypto", "cosmwasm-derive", "derivative", @@ -130,7 +137,6 @@ dependencies = [ "serde-json-wasm", "sha2 0.10.6", "thiserror", - "uint", ] [[package]] @@ -142,12 +148,6 @@ dependencies = [ "libc", ] -[[package]] -name = "crunchy" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" - [[package]] name = "crypto-bigint" version = "0.4.9" @@ -682,12 +682,6 @@ dependencies = [ "der", ] -[[package]] -name = "static_assertions" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" - [[package]] name = "subtle" version = "2.4.1" @@ -731,18 +725,6 @@ version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" -[[package]] -name = "uint" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" -dependencies = [ - "byteorder", - "crunchy", - "hex", - "static_assertions", -] - [[package]] name = "unicode-ident" version = "1.0.6" diff --git a/cosmwasm/contracts/price-feed-helper/Cargo.toml b/cosmwasm/contracts/price-feed-helper/Cargo.toml index ab29111..f2f85af 100644 --- a/cosmwasm/contracts/price-feed-helper/Cargo.toml +++ b/cosmwasm/contracts/price-feed-helper/Cargo.toml @@ -31,7 +31,7 @@ library = [] [dependencies] cw2 = "1.0.1" cw-controllers = "1.0.1" -cosmwasm-std = "1.2.1" +cosmwasm-std = "1.3.3" cw-storage-plus = "1.0.1" serde_json = "1.0.93" cosmwasm-schema = "1.2.1" diff --git a/cosmwasm/contracts/price-feed/Cargo.toml b/cosmwasm/contracts/price-feed/Cargo.toml index 5a2f173..17128e7 100644 --- a/cosmwasm/contracts/price-feed/Cargo.toml +++ b/cosmwasm/contracts/price-feed/Cargo.toml @@ -30,7 +30,7 @@ library = [] [dependencies] cw2 = "1.0.1" cw-controllers = "1.0.1" -cosmwasm-std = "1.2.1" +cosmwasm-std = "1.3.3" cw-storage-plus = "1.0.1" serde_json = "1.0.93" cosmwasm-schema = "1.2.1" diff --git a/cosmwasm/contracts/price-query/Cargo.toml b/cosmwasm/contracts/price-query/Cargo.toml index 6cc4e51..6561b0d 100644 --- a/cosmwasm/contracts/price-query/Cargo.toml +++ b/cosmwasm/contracts/price-query/Cargo.toml @@ -31,7 +31,7 @@ library = [] [dependencies] cw2 = "1.0.1" cw-controllers = "1.0.1" -cosmwasm-std = "1.2.1" +cosmwasm-std = "1.3.3" cw-storage-plus = "1.0.1" serde_json = "1.0.93" cosmwasm-schema = "1.2.1"