From e0754719111cabb79407d89f5a12b559dd84ca75 Mon Sep 17 00:00:00 2001 From: Mo8it Date: Thu, 12 Jan 2023 21:05:17 +0100 Subject: [PATCH] Use only needed tokio features --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d0e0c95..9c2767f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_yaml = "0.9" sha2 = "0.10" -tokio = { version = "1.23", features = ["full"] } +tokio = { version = "1.24", default-features = false, features = ["rt-multi-thread", "macros"] } tracing = "0.1" tracing-appender = "0.2" tracing-subscriber = "0.3"