From 4ac1679a732ed7f3f8a7216be3a0e72aed38e495 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Sep 2022 22:39:58 +0000 Subject: [PATCH] Bump impl-serde from 0.3.1 to 0.4.0 Bumps [impl-serde](https://github.com/paritytech/parity-common) from 0.3.1 to 0.4.0. - [Release notes](https://github.com/paritytech/parity-common/releases) - [Commits](https://github.com/paritytech/parity-common/compare/impl-serde-v0.3.1...impl-serde-v0.4.0) --- updated-dependencies: - dependency-name: impl-serde dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 +++++++++++++++------ primitives/core/Cargo.toml | 2 +- primitives/storage/Cargo.toml | 2 +- primitives/version/Cargo.toml | 2 +- 4 files changed, 18 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e9798d4c42054..d943194a4779e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2877,9 +2877,18 @@ dependencies = [ [[package]] name = "impl-serde" -version = "0.3.1" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4551f042f3438e64dbd6226b20527fc84a6e1fe65688b58746a2f53623f25f5c" +dependencies = [ + "serde", +] + +[[package]] +name = "impl-serde" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b47ca4d2b6931707a55fce5cf66aff80e2178c8b63bbb4ecb5695cbc870ddf6f" +checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd" dependencies = [ "serde", ] @@ -6756,7 +6765,7 @@ checksum = "05e4722c697a58a99d5d06a08c30821d7c082a4632198de1eaa5a6c22ef42373" dependencies = [ "fixed-hash", "impl-codec", - "impl-serde", + "impl-serde 0.3.2", "scale-info", "uint", ] @@ -9432,7 +9441,7 @@ dependencies = [ "hash256-std-hasher", "hex", "hex-literal", - "impl-serde", + "impl-serde 0.4.0", "lazy_static", "libsecp256k1 0.7.0", "log 0.4.14", @@ -9854,7 +9863,7 @@ version = "4.0.0-dev" name = "sp-storage" version = "4.0.0-dev" dependencies = [ - "impl-serde", + "impl-serde 0.4.0", "parity-scale-codec", "ref-cast", "serde", @@ -9959,7 +9968,7 @@ dependencies = [ name = "sp-version" version = "4.0.0-dev" dependencies = [ - "impl-serde", + "impl-serde 0.4.0", "parity-scale-codec", "parity-wasm 0.42.2", "scale-info", diff --git a/primitives/core/Cargo.toml b/primitives/core/Cargo.toml index 61451e10ecf2f..f92ef64b97b20 100644 --- a/primitives/core/Cargo.toml +++ b/primitives/core/Cargo.toml @@ -26,7 +26,7 @@ primitive-types = { version = "0.10.1", default-features = false, features = [ "codec", "scale-info" ] } -impl-serde = { version = "0.3.0", optional = true } +impl-serde = { version = "0.4.0", optional = true } wasmi = { version = "0.9.1", optional = true } hash-db = { version = "0.15.2", default-features = false } hash256-std-hasher = { version = "0.15.2", default-features = false } diff --git a/primitives/storage/Cargo.toml b/primitives/storage/Cargo.toml index c9166a5bbba07..1a94ddc68f7fe 100644 --- a/primitives/storage/Cargo.toml +++ b/primitives/storage/Cargo.toml @@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } serde = { version = "1.0.126", optional = true, features = ["derive"] } -impl-serde = { version = "0.3.1", optional = true } +impl-serde = { version = "0.4.0", optional = true } ref-cast = "1.0.0" sp-debug-derive = { version = "4.0.0-dev", default-features = false, path = "../debug-derive" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } diff --git a/primitives/version/Cargo.toml b/primitives/version/Cargo.toml index bbdaf9c1cab1b..0ed1651ab2e14 100644 --- a/primitives/version/Cargo.toml +++ b/primitives/version/Cargo.toml @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] -impl-serde = { version = "0.3.1", optional = true } +impl-serde = { version = "0.4.0", optional = true } serde = { version = "1.0.126", optional = true, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } scale-info = { version = "1.0", default-features = false, features = ["derive"] }