From 7fc0e8ec8cd4b18ba10a04cf0ac2bee48826de3d Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 6 Jul 2021 23:48:01 -0400 Subject: chore: use parking_lot for synchronization primitives to align with tokio (#11289) parking_lot is already transitively used in tokio via the "full" cargo feature --- core/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'core/lib.rs') diff --git a/core/lib.rs b/core/lib.rs index 8c8861c79..a9f6d5d8b 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -18,6 +18,7 @@ mod runtime; // Re-exports pub use futures; +pub use parking_lot; pub use rusty_v8 as v8; pub use serde; pub use serde_json; -- cgit v1.2.3