From 3089ecfa6af1fc54be839d78135088bd858c1694 Mon Sep 17 00:00:00 2001 From: zetanumbers Date: Sat, 26 Dec 2020 17:17:55 +0300 Subject: [PATCH] Add wasm-bindgen features to the `parking_lot` dependency. --- Cargo.toml | 2 +- dyn-cache/Cargo.toml | 2 +- topo/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fcbf6ddd8..11d4cb2b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ dyn-cache = { path = "dyn-cache", version = "0.12.0"} futures = "0.3.5" illicit = { path = "illicit", version = "1.1.1"} moxie-macros = { path = "macros", version = "0.1.0-pre" } -parking_lot = "0.11" +parking_lot = { version = "0.11", features = ["wasm-bindgen"]} scopeguard = "1" topo = { path = "topo", version = "0.13.0"} tracing = "^0.1" diff --git a/dyn-cache/Cargo.toml b/dyn-cache/Cargo.toml index 9229b855f..928dd7bab 100644 --- a/dyn-cache/Cargo.toml +++ b/dyn-cache/Cargo.toml @@ -18,7 +18,7 @@ downcast-rs = "1.1.1" hash_hasher = "2.0.3" hashbrown = "0.9.0" illicit = { path = "../illicit", version = "1.1.1"} -parking_lot = "0.11.0" +parking_lot = { version = "0.11.0", features = ["wasm-bindgen"]} paste = "1.0.0" [dev-dependencies] diff --git a/topo/Cargo.toml b/topo/Cargo.toml index 9f67177c0..0595821ba 100644 --- a/topo/Cargo.toml +++ b/topo/Cargo.toml @@ -17,7 +17,7 @@ edition = "2018" dyn-cache = { path = "../dyn-cache", version = "0.12.0"} illicit = { path = "../illicit", version = "1.1.1"} once_cell = "1.4.0" -parking_lot = "0.11.0" +parking_lot = { version = "0.11.0", features = ["wasm-bindgen"]} topo-macro = { path = "macro", version = "0.10.0"} [dev-dependencies]