From dea94a9834a8a1bee7cbf807bb00b905c393a22a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jan 2022 23:32:27 +0000 Subject: [PATCH] Update parking_lot requirement from >=0.10,<0.12 to >=0.10, <0.13 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.10.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 +- plugins/actix-web/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0675acc3b..1262f2aad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ heck = { version = "0.3", optional = true } http = { version = "0.2", optional = true } itertools = "0.10" log = { version = "0.4", optional = true } -parking_lot = { version = ">=0.10,<0.12" } +parking_lot = { version = ">=0.10, <0.13" } regex = { version = "1.3", optional = true } reqwest = { version = "0.10", features = ["blocking"], optional = true } semver = ">=0.9, <0.12" diff --git a/core/Cargo.toml b/core/Cargo.toml index 434735702..091060041 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -22,7 +22,7 @@ heck = { version = "0.3", optional = true } once_cell = "1.4" log = { version = "0.4", optional = true } mime = "0.3" -parking_lot = { version = ">=0.10,<0.12", features = ["serde"] } +parking_lot = { version = ">=0.10, <0.13", features = ["serde"] } pin-project = { version = "1.0", optional = true } rust_decimal = { version = "1", optional = true } regex = "1.3" diff --git a/plugins/actix-web/Cargo.toml b/plugins/actix-web/Cargo.toml index e554ac436..db2493990 100644 --- a/plugins/actix-web/Cargo.toml +++ b/plugins/actix-web/Cargo.toml @@ -17,7 +17,7 @@ actix-service = "2.0.0-beta.4" actix-web2 = { version = "2", default-features = false, optional = true, package = "actix-web" } actix-web3 = { version = "3", default-features = false, optional = true, package = "actix-web" } actix-web4 = { version = "4.0.0-beta.12", default-features = false, optional = true, package = "actix-web" } -parking_lot = ">=0.10,<0.12" +parking_lot = ">=0.10, <0.13" serde_json = "1.0" once_cell = "1.4" openapiv3 = { version = "0.4.0", optional = true }