From 3416ea96ae89b6892d42edd9771381f2fe0aac7c Mon Sep 17 00:00:00 2001 From: Oleksandr Kozachuk Date: Fri, 6 Jan 2023 15:27:58 +0100 Subject: [PATCH] Remove deadlock_detection feature from parking_lot, because it is incompatible with wasm32 --- hel/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hel/Cargo.toml b/hel/Cargo.toml index efe70fb..3d98328 100644 --- a/hel/Cargo.toml +++ b/hel/Cargo.toml @@ -22,7 +22,7 @@ base64 = "0.20.0" shlex = "1.1.0" shellexpand = "3.0.0" scopeguard = "1.1.0" -parking_lot = { version = "0.12.1", features = ["deadlock_detection"] } +parking_lot = "0.12.1" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] chrono = "0.4.23"