From aa53eac71bcb5f838f8011750e8b625638bac6a1 Mon Sep 17 00:00:00 2001 From: link2xt Date: Tue, 3 Dec 2024 06:35:21 +0000 Subject: [PATCH] build: disable default features of tokio --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9a4c6d7..182ec91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ futures = "0.3.21" log = "^0.4" nom = "^7.0" thiserror = "1" -tokio = { version = "1", features = ["time", "io-util"], optional = true } +tokio = { version = "1", default-features = false, features = ["time", "io-util"], optional = true } [dev-dependencies] env_logger = "^0.9"