From 8ae9ad83097a01a6fde4e204abef8938c2f1f80a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 19:32:38 +0000 Subject: [PATCH] build(deps): Bump cosmwasm-schema from 1.5.3 to 2.0.1 Bumps [cosmwasm-schema](https://github.com/CosmWasm/cosmwasm) from 1.5.3 to 2.0.1. - [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.5.3...v2.0.1) --- updated-dependencies: - dependency-name: cosmwasm-schema dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 34 +++++++++++++++++++++++++----- contracts/test-contract/Cargo.toml | 2 +- packages/bindings/Cargo.toml | 2 +- 3 files changed, 31 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 869ee0b5..6ea505b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -220,7 +220,20 @@ version = "1.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac3e3a2136e2a60e8b6582f5dffca5d1a683ed77bf38537d330bc1dfccd69010" dependencies = [ - "cosmwasm-schema-derive", + "cosmwasm-schema-derive 1.5.3", + "schemars", + "serde", + "serde_json", + "thiserror", +] + +[[package]] +name = "cosmwasm-schema" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de6e530d13452b4e9d882008193ab165032307a31f197b45d7b4e2aeff7577b5" +dependencies = [ + "cosmwasm-schema-derive 2.0.1", "schemars", "serde", "serde_json", @@ -238,6 +251,17 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "cosmwasm-schema-derive" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0ef0d7a8ae8807b8e8f5c94333d12aa9a11efc05f7b864f362582a2b167c663" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "cosmwasm-std" version = "1.5.3" @@ -341,7 +365,7 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c4a657e5caacc3a0d00ee96ca8618745d050b8f757c709babafb81208d4239c" dependencies = [ - "cosmwasm-schema", + "cosmwasm-schema 1.5.3", "cosmwasm-std", "cw2", "schemars", @@ -356,7 +380,7 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9431d14f64f49e41c6ef5561ed11a5391c417d0cb16455dea8cdcb9037a8d197" dependencies = [ - "cosmwasm-schema", + "cosmwasm-schema 1.5.3", "cosmwasm-std", "cw-storage-plus", "schemars", @@ -435,7 +459,7 @@ version = "3.0.0" dependencies = [ "base64", "chrono", - "cosmwasm-schema", + "cosmwasm-schema 2.0.1", "cosmwasm-std", "cw-multi-test", "desmos-mock", @@ -1362,7 +1386,7 @@ dependencies = [ name = "test-contract" version = "1.0.0" dependencies = [ - "cosmwasm-schema", + "cosmwasm-schema 2.0.1", "cosmwasm-std", "cw2", "desmos-bindings", diff --git a/contracts/test-contract/Cargo.toml b/contracts/test-contract/Cargo.toml index 420f4e19..a71a95b6 100644 --- a/contracts/test-contract/Cargo.toml +++ b/contracts/test-contract/Cargo.toml @@ -37,4 +37,4 @@ cosmwasm-std = { version = "1.5.3", features = ["stargate"]} cw2 = "1.1.1" thiserror = { version = "1.0" } desmos-bindings = { path = "../../packages/bindings", version = "3.0.0" } -cosmwasm-schema = { version = "1.5.3" } \ No newline at end of file +cosmwasm-schema = { version = "2.0.1" } \ No newline at end of file diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index 260b8166..bd6a63b8 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -23,7 +23,7 @@ all-features = true [dependencies] chrono = {version = "0.4.34", default-features = false} cosmwasm-std = { version = "1.5.3", features = ["stargate"]} -cosmwasm-schema = "1.5.3" +cosmwasm-schema = "2.0.1" serde = { version = "1.0.197", default-features = false, features = ["derive"] } prost = {version = "0.12.3", default-features = false, features = ["prost-derive"]} prost-types = {version = "0.12.3", default-features = false}