From d0beee19514239693c25d8c77474606cc0915f9b Mon Sep 17 00:00:00 2001 From: Edoardo Morandi Date: Thu, 7 Jan 2021 16:30:57 +0100 Subject: [PATCH] Fix an issue with parking_lot >= 0.8.1 --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 10353f7..3047dd3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ parking_lot = "0.11" pin-utils = "0.1.0" [target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies] +parking_lot = { version = "0.11", features = ["wasm-bindgen"] } js-sys = "0.3.31" wasm-bindgen = "0.2.37" wasm-bindgen-futures = "0.4.4"