Skip to content

Commit

Permalink
Add wasm-bindgen features to the parking_lot dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
zetanumbers authored and anp committed Dec 29, 2020
1 parent 977001a commit 3089ecf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion dyn-cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion topo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 3089ecf

Please sign in to comment.