From 214351be32102cb7de7ba55b440dfa84f2b022cd Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 2 Jul 2022 17:46:13 +0200 Subject: [PATCH] Remove the `parking_lot` feature from `tokio` Mutexes from the standard library have been improved in recent Rust versions. Only in Linux, though. --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4b30026..0b64b6f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,8 +52,7 @@ tokio = { version = "1.19.2", features = [ "io-util", "fs", "time", - "rt-multi-thread", - "parking_lot", + "rt-multi-thread" ] } toml = "0.5.9"