From f4cd85c576b79c0e157736d5c24bc3388fb7e624 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Dec 2022 02:08:26 +0000 Subject: [PATCH] Bump serde from 1.0.147 to 1.0.152 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.147 to 1.0.152. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.147...v1.0.152) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 +++++++------- integration-tests/Cargo.toml | 2 +- pallets/fees-split/Cargo.toml | 2 +- runtime/arctic/Cargo.toml | 2 +- runtime/frost/Cargo.toml | 2 +- runtime/snow/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1607d1a0..0d86b48d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10727,18 +10727,18 @@ checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5" [[package]] name = "serde" -version = "1.0.147" +version = "1.0.152" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965" +checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.147" +version = "1.0.152" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852" +checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" dependencies = [ "proc-macro2", "quote", @@ -12101,9 +12101,9 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "syn" -version = "1.0.103" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" +checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" dependencies = [ "proc-macro2", "quote", @@ -12627,7 +12627,7 @@ version = "1.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ - "cfg-if 0.1.10", + "cfg-if 1.0.0", "digest 0.10.3", "rand 0.8.5", "static_assertions", diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 1a20f34b..f0927586 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -23,7 +23,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features = cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.30", default-features = false } parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.30", default-features = false } -serde = { version = "1.0.138", optional = true, features = ["derive"] } +serde = { version = "1.0.152", optional = true, features = ["derive"] } frame-support = { branch = "polkadot-v0.9.30", default-features = false, git = "https://github.com/paritytech/substrate" } frame-system = { branch = "polkadot-v0.9.30", default-features = false, package = "frame-system", git = "https://github.com/paritytech/substrate" } diff --git a/pallets/fees-split/Cargo.toml b/pallets/fees-split/Cargo.toml index 9ac67e84..6325a2b9 100644 --- a/pallets/fees-split/Cargo.toml +++ b/pallets/fees-split/Cargo.toml @@ -11,7 +11,7 @@ description = "FRAME pallet for runtime configuration" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } scale-info = { version = "2.0.1", default-features = false, features = ["derive"] } -serde = { version = "1.0.138", features = [ "derive" ], optional = true } +serde = { version = "1.0.152", features = [ "derive" ], optional = true } frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" } frame-system = { default-features = false, package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" } diff --git a/runtime/arctic/Cargo.toml b/runtime/arctic/Cargo.toml index 35ac18d4..59ed8baa 100644 --- a/runtime/arctic/Cargo.toml +++ b/runtime/arctic/Cargo.toml @@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"] codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = [ "derive", ] } -serde = { version = "1.0.138", optional = true, features = ["derive"] } +serde = { version = "1.0.152", optional = true, features = ["derive"] } scale-info = { version = "2.1.0", default-features = false, features = [ "derive", ] } diff --git a/runtime/frost/Cargo.toml b/runtime/frost/Cargo.toml index c01fadbe..ff0dc88e 100644 --- a/runtime/frost/Cargo.toml +++ b/runtime/frost/Cargo.toml @@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive", ] } -serde = { version = "1.0.138", optional = true, features = ["derive"] } +serde = { version = "1.0.152", optional = true, features = ["derive"] } scale-info = { version = "2.0.1", default-features = false, features = [ "derive", ] } diff --git a/runtime/snow/Cargo.toml b/runtime/snow/Cargo.toml index b4db3225..db1940da 100644 --- a/runtime/snow/Cargo.toml +++ b/runtime/snow/Cargo.toml @@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"] codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = [ "derive", ] } -serde = { version = "1.0.138", optional = true, features = ["derive"] } +serde = { version = "1.0.152", optional = true, features = ["derive"] } scale-info = { version = "2.1.0", default-features = false, features = [ "derive", ] }