From c10275831f5676bfae0894bf584b0377231053e8 Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Sun, 4 Jul 2021 10:13:38 -0700 Subject: [PATCH] Enable tokio parking_lot feature --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 448a432..cb4958c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ serde_json = "1.0" serde_repr = "0.1" strum = "0.20" strum_macros = "0.20" -tokio = { version = "1", default-features = false, features = [ "time" ] } +tokio = { version = "1", default-features = false, features = [ "time", "parking_lot" ] } [dev-dependencies] colored = "2"