From ab7eed2759d062fbe267e7e96f84c7a3f477ef11 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Jan 2022 13:12:39 +0000 Subject: [PATCH] build(deps): update parking_lot requirement from 0.11.1 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.1...0.12.0) --- updated-dependencies: - dependency-name: parking_lot dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- aya/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aya/Cargo.toml b/aya/Cargo.toml index cba636ca..da744867 100644 --- a/aya/Cargo.toml +++ b/aya/Cargo.toml @@ -17,7 +17,7 @@ object = { version = "0.28", default-features = false, features = ["std", "read_ bitflags = "1.2.1" bytes = "1" lazy_static = "1" -parking_lot = { version = "0.11.1", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } futures = { version = "0.3.12", optional = true, default-features = false, features = ["std"] } tokio = { version = "1.2.0", features = ["macros", "rt", "rt-multi-thread", "net"], optional = true } async-std = { version = "1.9.0", optional = true }