summaryrefslogtreecommitdiff
path: root/core/lib.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2021-07-06 23:48:01 -0400
committerGitHub <noreply@github.com>2021-07-06 23:48:01 -0400
commit7fc0e8ec8cd4b18ba10a04cf0ac2bee48826de3d (patch)
tree70e078538ae0f3467e8a519b918ae936587ce2d4 /core/lib.rs
parent78ac19f51f48984ea16f97a0c574fa507544b8d5 (diff)
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
Diffstat (limited to 'core/lib.rs')
-rw-r--r--core/lib.rs1
1 files changed, 1 insertions, 0 deletions
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;