From 830b021574c5f8c49e54ce5a901fd40d2bdaf127 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Feb 2022 19:39:09 +0100 Subject: [PATCH] Bump parking_lot from 0.10.2 to 0.12.0 (#1030) Bumps [parking_lot](https://github.com/Amanieu/parking_lot) from 0.10.2 to 0.12.0. - [Release notes](https://github.com/Amanieu/parking_lot/releases) - [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md) - [Commits](https://github.com/Amanieu/parking_lot/compare/0.10.2...0.12.0) --- updated-dependencies: - dependency-name: parking_lot dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- cumulus/Cargo.lock | 12 ++++++------ cumulus/client/consensus/relay-chain/Cargo.toml | 2 +- cumulus/client/network/Cargo.toml | 2 +- cumulus/client/relay-chain-interface/Cargo.toml | 2 +- cumulus/client/relay-chain-local/Cargo.toml | 2 +- cumulus/client/service/Cargo.toml | 2 +- cumulus/test/service/Cargo.toml | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/cumulus/Cargo.lock b/cumulus/Cargo.lock index 55f3fda6e36..65cfa49bb79 100644 --- a/cumulus/Cargo.lock +++ b/cumulus/Cargo.lock @@ -1622,7 +1622,7 @@ dependencies = [ "cumulus-primitives-core", "cumulus-relay-chain-interface", "futures 0.3.21", - "parking_lot 0.10.2", + "parking_lot 0.12.0", "sc-client-api", "sc-consensus", "sp-api", @@ -1649,7 +1649,7 @@ dependencies = [ "futures 0.3.21", "futures-timer", "parity-scale-codec", - "parking_lot 0.11.2", + "parking_lot 0.12.0", "polkadot-client", "polkadot-node-primitives", "polkadot-parachain", @@ -1710,7 +1710,7 @@ dependencies = [ "cumulus-primitives-core", "cumulus-relay-chain-interface", "parity-scale-codec", - "parking_lot 0.10.2", + "parking_lot 0.12.0", "polkadot-overseer", "polkadot-primitives", "sc-chain-spec", @@ -1972,7 +1972,7 @@ dependencies = [ "cumulus-primitives-core", "derive_more", "futures 0.3.21", - "parking_lot 0.11.2", + "parking_lot 0.12.0", "polkadot-overseer", "sc-client-api", "sc-service", @@ -1994,7 +1994,7 @@ dependencies = [ "cumulus-test-service", "futures 0.3.21", "futures-timer", - "parking_lot 0.11.2", + "parking_lot 0.12.0", "polkadot-client", "polkadot-primitives", "polkadot-service", @@ -2118,7 +2118,7 @@ dependencies = [ "jsonrpc-core", "pallet-transaction-payment", "parity-scale-codec", - "parking_lot 0.11.2", + "parking_lot 0.12.0", "polkadot-primitives", "polkadot-service", "polkadot-test-service", diff --git a/cumulus/client/consensus/relay-chain/Cargo.toml b/cumulus/client/consensus/relay-chain/Cargo.toml index e4006ed731f..6c1c2a2b369 100644 --- a/cumulus/client/consensus/relay-chain/Cargo.toml +++ b/cumulus/client/consensus/relay-chain/Cargo.toml @@ -29,4 +29,4 @@ cumulus-relay-chain-interface = { path = "../../relay-chain-interface" } futures = { version = "0.3.8", features = ["compat"] } tracing = "0.1.22" async-trait = "0.1.42" -parking_lot = "0.10.2" +parking_lot = "0.12.0" diff --git a/cumulus/client/network/Cargo.toml b/cumulus/client/network/Cargo.toml index 440109e88b7..36dcc0b3940 100644 --- a/cumulus/client/network/Cargo.toml +++ b/cumulus/client/network/Cargo.toml @@ -27,7 +27,7 @@ codec = { package = "parity-scale-codec", version = "2.3.0", features = [ "deriv futures = { version = "0.3.1", features = ["compat"] } futures-timer = "3.0.2" tracing = "0.1.22" -parking_lot = "0.11.1" +parking_lot = "0.12.0" derive_more = "0.99.2" async-trait = "0.1.52" diff --git a/cumulus/client/relay-chain-interface/Cargo.toml b/cumulus/client/relay-chain-interface/Cargo.toml index b76ebcc3137..8c5b253693c 100644 --- a/cumulus/client/relay-chain-interface/Cargo.toml +++ b/cumulus/client/relay-chain-interface/Cargo.toml @@ -18,7 +18,7 @@ sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "mas sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.1" -parking_lot = "0.11.1" +parking_lot = "0.12.0" derive_more = "0.99.2" async-trait = "0.1.52" thiserror = "1.0.30" diff --git a/cumulus/client/relay-chain-local/Cargo.toml b/cumulus/client/relay-chain-local/Cargo.toml index a5150afeab2..b33f0262277 100644 --- a/cumulus/client/relay-chain-local/Cargo.toml +++ b/cumulus/client/relay-chain-local/Cargo.toml @@ -25,7 +25,7 @@ sc-service = { git = "https://github.com/paritytech/substrate", branch = "master sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -parking_lot = "0.11.1" +parking_lot = "0.12.0" tracing = "0.1.25" async-trait = "0.1.52" futures = { version = "0.3.1", features = ["compat"] } diff --git a/cumulus/client/service/Cargo.toml b/cumulus/client/service/Cargo.toml index ec2cd3ca86e..b5bbd513fc6 100644 --- a/cumulus/client/service/Cargo.toml +++ b/cumulus/client/service/Cargo.toml @@ -33,4 +33,4 @@ polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = " # Other deps tracing = "0.1.22" codec = { package = "parity-scale-codec", version = "2.3.0" } -parking_lot = "0.10.2" +parking_lot = "0.12.0" diff --git a/cumulus/test/service/Cargo.toml b/cumulus/test/service/Cargo.toml index 3c3e53ac071..a36207ad4fb 100644 --- a/cumulus/test/service/Cargo.toml +++ b/cumulus/test/service/Cargo.toml @@ -56,7 +56,7 @@ cumulus-relay-chain-local = { path = "../../client/relay-chain-local" } criterion = { version = "0.3.5", features = [ "async_tokio" ] } -parking_lot = "0.11.1" +parking_lot = "0.12.0" # RPC related dependencies jsonrpc-core = "18.0.0" -- GitLab