From 6dda2dafb9b01cefa760eb410f72bea8f41c73f5 Mon Sep 17 00:00:00 2001 From: Mofei Zhang Date: Mon, 7 Feb 2022 05:19:51 -0800 Subject: [PATCH] Bump parking-lot to version 0.12.0 Summary: ~~~Added new parking-lot version named parking_lot_0_12~~~ allow-large-files previous versions of parking-lot are incompatible with wasm compilation targets https://github.com/rustwasm/wasm-bindgen/issues/2160 https://github.com/Amanieu/parking_lot/pull/302 Reviewed By: dtolnay Differential Revision: D33985872 fbshipit-source-id: ce571ef50289fe97ff89dbf72d2c7f39fbd47758 --- reverie-ptrace/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reverie-ptrace/Cargo.toml b/reverie-ptrace/Cargo.toml index 5c6dc43..a1067ce 100644 --- a/reverie-ptrace/Cargo.toml +++ b/reverie-ptrace/Cargo.toml @@ -19,7 +19,7 @@ lazy_static = "1.0" libc = "0.2.98" nix = "0.22" num-traits = "0.2" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } paste = "1.0" perf-event-open-sys = "1.0" procfs = "0.9"