From 4efa226b697c046ab3477539618d278b2f6dd0dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 Jan 2021 09:13:23 +0100 Subject: [PATCH] Bump serde from 1.0.118 to 1.0.119 (#2250) Bumps [serde](https://github.com/serde-rs/serde) from 1.0.118 to 1.0.119. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.118...v1.0.119) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- polkadot/Cargo.lock | 8 ++++---- polkadot/node/service/Cargo.toml | 2 +- polkadot/primitives/Cargo.toml | 2 +- polkadot/runtime/common/Cargo.toml | 2 +- polkadot/runtime/kusama/Cargo.toml | 2 +- polkadot/runtime/parachains/Cargo.toml | 2 +- polkadot/runtime/polkadot/Cargo.toml | 2 +- polkadot/runtime/rococo/Cargo.toml | 2 +- polkadot/runtime/test-runtime/Cargo.toml | 2 +- polkadot/runtime/westend/Cargo.toml | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock index 4017ad9eefc..3b4fc29f1d0 100644 --- a/polkadot/Cargo.lock +++ b/polkadot/Cargo.lock @@ -7799,18 +7799,18 @@ checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5" [[package]] name = "serde" -version = "1.0.118" +version = "1.0.119" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06c64263859d87aa2eb554587e2d23183398d617427327cf2b3d0ed8c69e4800" +checksum = "9bdd36f49e35b61d49efd8aa7fc068fd295961fd2286d0b2ee9a4c7a14e99cc3" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.118" +version = "1.0.119" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c84d3526699cd55261af4b941e4e725444df67aa4f9e6a3564f18030d12672df" +checksum = "552954ce79a059ddd5fd68c271592374bd15cab2274970380c000118aeffe1cd" dependencies = [ "proc-macro2 1.0.24", "quote 1.0.7", diff --git a/polkadot/node/service/Cargo.toml b/polkadot/node/service/Cargo.toml index 99bcdd6515a..61a7293fd51 100644 --- a/polkadot/node/service/Cargo.toml +++ b/polkadot/node/service/Cargo.toml @@ -57,7 +57,7 @@ futures = "0.3.11" hex-literal = "0.3.1" tracing = "0.1.22" tracing-futures = "0.2.4" -serde = { version = "1.0.118", features = ["derive"] } +serde = { version = "1.0.119", features = ["derive"] } thiserror = "1.0.23" # Polkadot diff --git a/polkadot/primitives/Cargo.toml b/polkadot/primitives/Cargo.toml index 21db9526b82..512c835f1df 100644 --- a/polkadot/primitives/Cargo.toml +++ b/polkadot/primitives/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"] edition = "2018" [dependencies] -serde = { version = "1.0.118", optional = true, features = ["derive"] } +serde = { version = "1.0.119", optional = true, features = ["derive"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["bit-vec", "derive"] } primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } diff --git a/polkadot/runtime/common/Cargo.toml b/polkadot/runtime/common/Cargo.toml index 177e1f483fb..f47c9e170b7 100644 --- a/polkadot/runtime/common/Cargo.toml +++ b/polkadot/runtime/common/Cargo.toml @@ -9,7 +9,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = { version = "0.4.13", optional = true } rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.118", default-features = false } +serde = { version = "1.0.119", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" diff --git a/polkadot/runtime/kusama/Cargo.toml b/polkadot/runtime/kusama/Cargo.toml index 4378419a86c..e34d483b805 100644 --- a/polkadot/runtime/kusama/Cargo.toml +++ b/polkadot/runtime/kusama/Cargo.toml @@ -10,7 +10,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = { version = "0.4.13", optional = true } rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.118", default-features = false } +serde = { version = "1.0.119", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.6.1" diff --git a/polkadot/runtime/parachains/Cargo.toml b/polkadot/runtime/parachains/Cargo.toml index b05c1079414..f7bbec01116 100644 --- a/polkadot/runtime/parachains/Cargo.toml +++ b/polkadot/runtime/parachains/Cargo.toml @@ -9,7 +9,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = "0.4.13" rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.118", features = [ "derive" ], optional = true } +serde = { version = "1.0.119", features = [ "derive" ], optional = true } derive_more = "0.99.11" sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } diff --git a/polkadot/runtime/polkadot/Cargo.toml b/polkadot/runtime/polkadot/Cargo.toml index 93d442e792a..537377cef19 100644 --- a/polkadot/runtime/polkadot/Cargo.toml +++ b/polkadot/runtime/polkadot/Cargo.toml @@ -10,7 +10,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = { version = "0.4.13", optional = true } rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.118", default-features = false } +serde = { version = "1.0.119", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.6.1" diff --git a/polkadot/runtime/rococo/Cargo.toml b/polkadot/runtime/rococo/Cargo.toml index 4515fbb481c..8849bc8e622 100644 --- a/polkadot/runtime/rococo/Cargo.toml +++ b/polkadot/runtime/rococo/Cargo.toml @@ -7,7 +7,7 @@ build = "build.rs" [dependencies] parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } -serde = { version = "1.0.118", default-features = false } +serde = { version = "1.0.119", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.6.1" hex-literal = "0.3.1" diff --git a/polkadot/runtime/test-runtime/Cargo.toml b/polkadot/runtime/test-runtime/Cargo.toml index ff23dd73383..4b30ed94fb7 100644 --- a/polkadot/runtime/test-runtime/Cargo.toml +++ b/polkadot/runtime/test-runtime/Cargo.toml @@ -10,7 +10,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = { version = "0.4.13", optional = true } rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.118", default-features = false } +serde = { version = "1.0.119", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.6.1" diff --git a/polkadot/runtime/westend/Cargo.toml b/polkadot/runtime/westend/Cargo.toml index 42dce59e548..b61008c9ca8 100644 --- a/polkadot/runtime/westend/Cargo.toml +++ b/polkadot/runtime/westend/Cargo.toml @@ -10,7 +10,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = { version = "0.4.13", optional = true } rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.118", default-features = false } +serde = { version = "1.0.119", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.6.1" static_assertions = "1.1.0" -- GitLab