From 06d176ae7d711938e2bff02104f52ce2eda3973c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 08:12:38 +0000 Subject: [PATCH] build(deps): Bump serde from 1.0.190 to 1.0.192 (#366) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [serde](https://github.com/serde-rs/serde) from 1.0.190 to 1.0.192.
Release notes

Sourced from serde's releases.

v1.0.192

v1.0.191

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde&package-manager=cargo&previous-version=1.0.190&new-version=1.0.192)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--- Cargo.lock | 8 ++++---- packages/bindings-test/Cargo.toml | 2 +- packages/bindings/Cargo.toml | 2 +- packages/std-derive/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 50a33875..505cf2cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1177,9 +1177,9 @@ checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" [[package]] name = "serde" -version = "1.0.190" +version = "1.0.192" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91d3c334ca1ee894a2c6f6ad698fe8c435b76d504b13d436f0685d648d6d96f7" +checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" dependencies = [ "serde_derive", ] @@ -1204,9 +1204,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.190" +version = "1.0.192" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67c5609f394e5c2bd7fc51efda478004ea80ef42fee983d5c67a65e34f32c0e3" +checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" dependencies = [ "proc-macro2", "quote", diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index b12b4474..c39c65e0 100644 --- a/packages/bindings-test/Cargo.toml +++ b/packages/bindings-test/Cargo.toml @@ -10,7 +10,7 @@ publish = false cosmwasm-std = { version = "1.5.0", features = ["stargate"]} desmos-bindings = { path = "../bindings", version = "2.0.0" } test-contract = { path = "../../contracts/test-contract", version = "1.0.0" } -serde = "1.0.190" +serde = "1.0.192" serde_json = "1.0.108" base64 = "0.21.5" chrono = "0.4.31" diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index d0fa1875..814265a9 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -24,7 +24,7 @@ all-features = true chrono = {version = "0.4.31", default-features = false} cosmwasm-std = { version = "1.5.0", features = ["stargate"]} cosmwasm-schema = "1.5.0" -serde = { version = "1.0.190", default-features = false, features = ["derive"] } +serde = { version = "1.0.192", default-features = false, features = ["derive"] } prost = {version = "0.12.1", default-features = false, features = ["prost-derive"]} prost-types = {version = "0.12.1", default-features = false} serde-cw-value = "0.7.0" diff --git a/packages/std-derive/Cargo.toml b/packages/std-derive/Cargo.toml index b45ff40a..c2f08620 100644 --- a/packages/std-derive/Cargo.toml +++ b/packages/std-derive/Cargo.toml @@ -19,6 +19,6 @@ syn = "2.0.39" [dev-dependencies] cosmwasm-std = {version = "1.5.0", features = ["stargate"]} prost = "0.12" -serde = "1.0.190" +serde = "1.0.192" trybuild = {version = "1.0.85", features = ["diff"]} desmos-mock = { version = "2.0.1", path = "../mock" }