From d38c12455e18d04aeb3ec6746c5efa010aba6c7c Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 25 Sep 2022 23:27:55 +0100 Subject: [PATCH] update parking_lot (relaxedly) Signed-off-by: Ian Jackson --- Cargo.lock | 31 +++---------------------------- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 29 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a0d1b95..8cce9a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -441,7 +441,7 @@ dependencies = [ "memchr", "mime", "nix", - "parking_lot 0.11.2", + "parking_lot", "pin-project-lite", "regex", "sha2", @@ -816,17 +816,6 @@ dependencies = [ "vcpkg", ] -[[package]] -name = "parking_lot" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" -dependencies = [ - "instant", - "lock_api", - "parking_lot_core 0.8.5", -] - [[package]] name = "parking_lot" version = "0.12.1" @@ -834,21 +823,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ "lock_api", - "parking_lot_core 0.9.3", -] - -[[package]] -name = "parking_lot_core" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" -dependencies = [ - "cfg-if", - "instant", - "libc", - "redox_syscall", - "smallvec", - "winapi", + "parking_lot_core", ] [[package]] @@ -1187,7 +1162,7 @@ dependencies = [ "mio", "num_cpus", "once_cell", - "parking_lot 0.12.1", + "parking_lot", "pin-project-lite", "signal-hook-registry", "socket2", diff --git a/Cargo.toml b/Cargo.toml index 005aaa6..e0653fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ ipnet = "2" itertools = "0.10" libc = "0.2" # just for EISDIR due to IsADirectory mime = "0.3" -parking_lot = "0.11" +parking_lot = ">= 0.11, < 0.13" regex = "1.5" lazy_static = "1.4" log = "0.4" -- 2.30.2