From f6e9883e43c523b167e26732676fdc5b3abf2785 Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Tue, 22 Oct 2024 00:29:50 -0700 Subject: [PATCH] fix tokio dep --- rwf/Cargo.toml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/rwf/Cargo.toml b/rwf/Cargo.toml index 03636551..2e167fa4 100644 --- a/rwf/Cargo.toml +++ b/rwf/Cargo.toml @@ -18,13 +18,7 @@ tokio-postgres = { version = "0.7", features = [ "with-serde_json-1", ] } bytes = "1" -tokio = { version = "1", features = [ - "net", - "fs", - "rt", - "macros", - "rt-multi-thread", -] } +tokio = { version = "1", features = ["full"] } thiserror = "1" parking_lot = "0.12" once_cell = "1"