From eb81b3252ccc7e4d4bb20cc3798ee77c193bba3b Mon Sep 17 00:00:00 2001 From: Adrien Date: Wed, 10 Apr 2024 12:36:15 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20Enable=20on=20tokio=20rt=20and=20sy?= =?UTF-8?q?nc=20features=20(disable=20default=20ones)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b89b6c5..2cb9c60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ dirs = "5.0.1" ctrlc-async = "3.2.2" thiserror = "1.0.50" turf = "0.7.0" -tokio = "1.34.0" +tokio = { version = "1.34.0", default-features = false, features = ["rt", "sync"] } log = "0.4.20" futures-util = "0.3.29" futures = "0.3.29"