From d2033b0a4e96d3d34107227ab03264ebd34f55ff Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Thu, 2 Jun 2022 21:48:49 +0000 Subject: [PATCH] parking lot upgrade --- Cargo.lock | 12 ++++++------ web3-proxy/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 267cd223..a973ffd5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2239,9 +2239,9 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ "lock_api", "parking_lot_core 0.9.3", @@ -3206,7 +3206,7 @@ checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" dependencies = [ "new_debug_unreachable", "once_cell", - "parking_lot 0.12.0", + "parking_lot 0.12.1", "phf_shared", "precomputed-hash", ] @@ -3442,7 +3442,7 @@ dependencies = [ "mio", "num_cpus", "once_cell", - "parking_lot 0.12.0", + "parking_lot 0.12.1", "pin-project-lite", "signal-hook-registry", "socket2", @@ -3650,7 +3650,7 @@ dependencies = [ "ansi_term", "lazy_static", "matchers", - "parking_lot 0.12.0", + "parking_lot 0.12.1", "regex", "sharded-slab", "smallvec", @@ -3931,7 +3931,7 @@ dependencies = [ "futures", "hashbrown 0.12.1", "linkedhashmap", - "parking_lot 0.12.0", + "parking_lot 0.12.1", "proctitle", "redis-cell-client", "regex", diff --git a/web3-proxy/Cargo.toml b/web3-proxy/Cargo.toml index b83c833b..042b5051 100644 --- a/web3-proxy/Cargo.toml +++ b/web3-proxy/Cargo.toml @@ -21,7 +21,7 @@ hashbrown = "0.12.1" linkedhashmap = { path = "../linkedhashmap", features = ["inline-more"] } redis-cell-client = { path = "../redis-cell-client" } # TODO: parking_lot has an "arc_lock" feature that we might want to use -parking_lot = { version = "0.12.0", features = ["deadlock_detection"] } +parking_lot = { version = "0.12.1", features = ["deadlock_detection"] } proctitle = "0.1.1" # TODO: regex has several "perf" features that we might want to use regex = "1.5.6"