From 5b626e229e623d2a1fe3923a408087f29b8cc185 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Feb 2022 16:40:31 +0000 Subject: [PATCH] build(deps): Update parking_lot requirement from 0.11.0 to 0.12.0 Updates the requirements on [parking_lot](https://github.com/Amanieu/parking_lot) to permit the latest version. - [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.11.0...0.12.0) --- updated-dependencies: - dependency-name: parking_lot dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- core/Cargo.toml | 2 +- muxers/mplex/Cargo.toml | 2 +- muxers/yamux/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 16c4585fc74..a635447bc3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -97,7 +97,7 @@ libp2p-uds = { version = "0.32.0", path = "transports/uds", optional = true } libp2p-wasm-ext = { version = "0.32.0", path = "transports/wasm-ext", default-features = false, optional = true } libp2p-yamux = { version = "0.36.0", path = "muxers/yamux", optional = true } multiaddr = { version = "0.14.0" } -parking_lot = "0.11.0" +parking_lot = "0.12.0" pin-project = "1.0.0" rand = "0.7.3" # Explicit dependency to be used in `wasm-bindgen` feature smallvec = "1.6.1" diff --git a/core/Cargo.toml b/core/Cargo.toml index 0d5c95ea709..98486e7e35f 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -26,7 +26,7 @@ multiaddr = { version = "0.14.0" } multihash = { version = "0.16", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] } multistream-select = { version = "0.11", path = "../misc/multistream-select" } p256 = { version = "0.10.0", default-features = false, features = ["ecdsa"], optional = true } -parking_lot = "0.11.0" +parking_lot = "0.12.0" pin-project = "1.0.0" prost = "0.9" rand = "0.8" diff --git a/muxers/mplex/Cargo.toml b/muxers/mplex/Cargo.toml index a42a7e2c158..85950b4c3a1 100644 --- a/muxers/mplex/Cargo.toml +++ b/muxers/mplex/Cargo.toml @@ -17,7 +17,7 @@ asynchronous-codec = "0.6" libp2p-core = { version = "0.32.0", path = "../../core", default-features = false } log = "0.4" nohash-hasher = "0.2" -parking_lot = "0.11" +parking_lot = "0.12" rand = "0.7" smallvec = "1.6.1" unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] } diff --git a/muxers/yamux/Cargo.toml b/muxers/yamux/Cargo.toml index 70332636cc2..c2ce4244be5 100644 --- a/muxers/yamux/Cargo.toml +++ b/muxers/yamux/Cargo.toml @@ -13,6 +13,6 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.1" libp2p-core = { version = "0.32.0", path = "../../core", default-features = false } -parking_lot = "0.11" +parking_lot = "0.12" thiserror = "1.0" yamux = "0.10.0"