From a9c6061862bf8cea756fdde1ed5437058c0f294d Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 12 Jun 2022 11:21:33 +0200 Subject: [PATCH] Don't enable the parking_lot feature in tokio That seems to be causing the event loop to randomly deadlock and the server to stop accepting connections. --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index af9ac48..13ddcb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,8 +51,7 @@ tokio = { version = "1.18.2", features = [ "io-util", "fs", "time", - "rt-multi-thread", - "parking_lot", + "rt-multi-thread" ] } toml = "0.5.9"