From 308cb3e76b5b7f1ae5a73889c6223d85d7a709c9 Mon Sep 17 00:00:00 2001 From: Keith Yeung <kungfukeith11@gmail.com> Date: Sat, 11 Dec 2021 05:10:51 -0800 Subject: [PATCH] Update serde to 1.0.131 (#853) --- cumulus/pallets/aura-ext/Cargo.toml | 2 +- cumulus/pallets/collator-selection/Cargo.toml | 2 +- cumulus/pallets/parachain-system/Cargo.toml | 2 +- cumulus/pallets/xcm/Cargo.toml | 2 +- cumulus/parachain-template/node/Cargo.toml | 2 +- cumulus/parachain-template/pallets/template/Cargo.toml | 2 +- cumulus/parachain-template/runtime/Cargo.toml | 2 +- cumulus/polkadot-parachains/Cargo.toml | 2 +- cumulus/polkadot-parachains/pallets/parachain-info/Cargo.toml | 2 +- cumulus/polkadot-parachains/pallets/ping/Cargo.toml | 2 +- cumulus/polkadot-parachains/rococo-parachain/Cargo.toml | 2 +- cumulus/polkadot-parachains/seedling/Cargo.toml | 2 +- cumulus/polkadot-parachains/shell/Cargo.toml | 2 +- cumulus/polkadot-parachains/statemine/Cargo.toml | 2 +- cumulus/polkadot-parachains/statemint/Cargo.toml | 2 +- cumulus/polkadot-parachains/westmint/Cargo.toml | 2 +- cumulus/test/runtime/Cargo.toml | 2 +- cumulus/test/service/Cargo.toml | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/cumulus/pallets/aura-ext/Cargo.toml b/cumulus/pallets/aura-ext/Cargo.toml index 294d5a7e927..baee2cf4002 100644 --- a/cumulus/pallets/aura-ext/Cargo.toml +++ b/cumulus/pallets/aura-ext/Cargo.toml @@ -19,7 +19,7 @@ sp-application-crypto = { git = "https://github.com/paritytech/substrate", defau # Other Dependencies codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"]} scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } [dev-dependencies] cumulus-pallet-parachain-system = { path = "../parachain-system" } diff --git a/cumulus/pallets/collator-selection/Cargo.toml b/cumulus/pallets/collator-selection/Cargo.toml index 7150905240c..3daec9375f5 100644 --- a/cumulus/pallets/collator-selection/Cargo.toml +++ b/cumulus/pallets/collator-selection/Cargo.toml @@ -17,7 +17,7 @@ log = { version = "0.4.0", default-features = false } codec = { default-features = false, features = ["derive"], package = "parity-scale-codec", version = "2.3.0" } rand = { version = "0.7.2", default-features = false } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.119", default-features = false } +serde = { version = "1.0.131", default-features = false } sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/cumulus/pallets/parachain-system/Cargo.toml b/cumulus/pallets/parachain-system/Cargo.toml index 56e62051402..b188970b728 100644 --- a/cumulus/pallets/parachain-system/Cargo.toml +++ b/cumulus/pallets/parachain-system/Cargo.toml @@ -32,7 +32,7 @@ sp-externalities = { git = "https://github.com/paritytech/substrate", default-fe # Other Dependencies codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"]} scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } log = { version = "0.4.14", default-features = false } environmental = { version = "1.1.2", default-features = false } diff --git a/cumulus/pallets/xcm/Cargo.toml b/cumulus/pallets/xcm/Cargo.toml index 095bcb3c487..ab2c4ed7ffd 100644 --- a/cumulus/pallets/xcm/Cargo.toml +++ b/cumulus/pallets/xcm/Cargo.toml @@ -7,7 +7,7 @@ version = "0.1.0" [dependencies] codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"] } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/cumulus/parachain-template/node/Cargo.toml b/cumulus/parachain-template/node/Cargo.toml index 661ed9d75d7..4ee98d1f4c1 100644 --- a/cumulus/parachain-template/node/Cargo.toml +++ b/cumulus/parachain-template/node/Cargo.toml @@ -28,7 +28,7 @@ derive_more = "0.99.2" log = "0.4.14" codec = { package = "parity-scale-codec", version = "2.0.0" } structopt = "0.3.8" -serde = { version = "1.0.119", features = ["derive"] } +serde = { version = "1.0.131", features = ["derive"] } hex-literal = "0.3.1" # RPC related Dependencies diff --git a/cumulus/parachain-template/pallets/template/Cargo.toml b/cumulus/parachain-template/pallets/template/Cargo.toml index aa67b725bbd..9195d740dc4 100644 --- a/cumulus/parachain-template/pallets/template/Cargo.toml +++ b/cumulus/parachain-template/pallets/template/Cargo.toml @@ -20,7 +20,7 @@ frame-support = { git = "https://github.com/paritytech/substrate", default-featu frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] -serde = { version = "1.0.119" } +serde = { version = "1.0.131" } sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } diff --git a/cumulus/parachain-template/runtime/Cargo.toml b/cumulus/parachain-template/runtime/Cargo.toml index beb9b87a75e..ebf8c45b695 100644 --- a/cumulus/parachain-template/runtime/Cargo.toml +++ b/cumulus/parachain-template/runtime/Cargo.toml @@ -19,7 +19,7 @@ hex-literal = { version = "0.3.1", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"]} log = { version = "0.4.14", default-features = false } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.119", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } smallvec = "1.6.1" # Local Dependencies diff --git a/cumulus/polkadot-parachains/Cargo.toml b/cumulus/polkadot-parachains/Cargo.toml index a42d99594f0..0b45cd13afe 100644 --- a/cumulus/polkadot-parachains/Cargo.toml +++ b/cumulus/polkadot-parachains/Cargo.toml @@ -14,7 +14,7 @@ futures = { version = "0.3.1", features = ["compat"] } log = "0.4.8" codec = { package = "parity-scale-codec", version = "2.3.0" } structopt = "0.3.3" -serde = { version = "1.0.101", features = ["derive"] } +serde = { version = "1.0.131", features = ["derive"] } hex-literal = "0.2.1" async-trait = "0.1.42" diff --git a/cumulus/polkadot-parachains/pallets/parachain-info/Cargo.toml b/cumulus/polkadot-parachains/pallets/parachain-info/Cargo.toml index 7ee0139a5b0..ad6753d739f 100644 --- a/cumulus/polkadot-parachains/pallets/parachain-info/Cargo.toml +++ b/cumulus/polkadot-parachains/pallets/parachain-info/Cargo.toml @@ -7,7 +7,7 @@ version = "0.1.0" [dependencies] codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"] } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/cumulus/polkadot-parachains/pallets/ping/Cargo.toml b/cumulus/polkadot-parachains/pallets/ping/Cargo.toml index fb183c2b714..4fd74ceaf9c 100644 --- a/cumulus/polkadot-parachains/pallets/ping/Cargo.toml +++ b/cumulus/polkadot-parachains/pallets/ping/Cargo.toml @@ -7,7 +7,7 @@ version = "0.1.0" [dependencies] codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"] } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/cumulus/polkadot-parachains/rococo-parachain/Cargo.toml b/cumulus/polkadot-parachains/rococo-parachain/Cargo.toml index 322112f8a83..0e5e5504ce1 100644 --- a/cumulus/polkadot-parachains/rococo-parachain/Cargo.toml +++ b/cumulus/polkadot-parachains/rococo-parachain/Cargo.toml @@ -10,7 +10,7 @@ codec = { package = "parity-scale-codec", version = "2.3.0", default-features = log = { version = "0.4.14", default-features = false } parachain-info = { path = "../pallets/parachain-info", default-features = false } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } # Substrate dependencies sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/cumulus/polkadot-parachains/seedling/Cargo.toml b/cumulus/polkadot-parachains/seedling/Cargo.toml index cbf672574d3..832c1b5e372 100644 --- a/cumulus/polkadot-parachains/seedling/Cargo.toml +++ b/cumulus/polkadot-parachains/seedling/Cargo.toml @@ -9,7 +9,7 @@ codec = { package = "parity-scale-codec", version = "2.3.0", default-features = log = { version = "0.4.14", default-features = false } parachain-info = { path = "../pallets/parachain-info", default-features = false } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } # Substrate dependencies sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/cumulus/polkadot-parachains/shell/Cargo.toml b/cumulus/polkadot-parachains/shell/Cargo.toml index 80071086ab9..f2aa5257423 100644 --- a/cumulus/polkadot-parachains/shell/Cargo.toml +++ b/cumulus/polkadot-parachains/shell/Cargo.toml @@ -9,7 +9,7 @@ codec = { package = "parity-scale-codec", version = "2.3.0", default-features = log = { version = "0.4.14", default-features = false } parachain-info = { path = "../pallets/parachain-info", default-features = false } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } # Substrate dependencies sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/cumulus/polkadot-parachains/statemine/Cargo.toml b/cumulus/polkadot-parachains/statemine/Cargo.toml index 1983f618610..6b29d019c1d 100644 --- a/cumulus/polkadot-parachains/statemine/Cargo.toml +++ b/cumulus/polkadot-parachains/statemine/Cargo.toml @@ -11,7 +11,7 @@ hex-literal = { version = "0.3.1", optional = true } log = { version = "0.4.14", default-features = false } parachain-info = { path = "../pallets/parachain-info", default-features = false } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } smallvec = "1.6.1" # Substrate dependencies diff --git a/cumulus/polkadot-parachains/statemint/Cargo.toml b/cumulus/polkadot-parachains/statemint/Cargo.toml index eddf78a20b5..914751c3216 100644 --- a/cumulus/polkadot-parachains/statemint/Cargo.toml +++ b/cumulus/polkadot-parachains/statemint/Cargo.toml @@ -10,7 +10,7 @@ codec = { package = "parity-scale-codec", version = "2.3.0", default-features = hex-literal = { version = "0.3.1", optional = true } log = { version = "0.4.14", default-features = false } parachain-info = { path = "../pallets/parachain-info", default-features = false } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } smallvec = "1.6.1" diff --git a/cumulus/polkadot-parachains/westmint/Cargo.toml b/cumulus/polkadot-parachains/westmint/Cargo.toml index 3c405d7a841..ba23703450c 100644 --- a/cumulus/polkadot-parachains/westmint/Cargo.toml +++ b/cumulus/polkadot-parachains/westmint/Cargo.toml @@ -11,7 +11,7 @@ hex-literal = { version = "0.3.1", optional = true } log = { version = "0.4.14", default-features = false } parachain-info = { path = "../pallets/parachain-info", default-features = false } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } smallvec = "1.6.1" # Substrate dependencies diff --git a/cumulus/test/runtime/Cargo.toml b/cumulus/test/runtime/Cargo.toml index 1b1b8f5de19..172d7d5cebc 100644 --- a/cumulus/test/runtime/Cargo.toml +++ b/cumulus/test/runtime/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"] } scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.101", optional = true, features = ["derive"] } +serde = { version = "1.0.131", optional = true, features = ["derive"] } # Substrate dependencies frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/cumulus/test/service/Cargo.toml b/cumulus/test/service/Cargo.toml index 978d02ecfab..ab1d846710d 100644 --- a/cumulus/test/service/Cargo.toml +++ b/cumulus/test/service/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "2.3.0" } rand = "0.7.3" -serde = { version = "1.0.101", features = ["derive"] } +serde = { version = "1.0.131", features = ["derive"] } async-trait = "0.1.42" tokio = { version = "1.10", features = ["macros"] } -- GitLab