From 8bb3a1252f7979e658bad2f6a2154abd8de2a442 Mon Sep 17 00:00:00 2001 From: Wes Turner <50891+westurner@users.noreply.github.com> Date: Fri, 7 Mar 2025 00:50:27 -0500 Subject: [PATCH] BLD: Cargo.toml: tokio {, features = ["rt-multi-thread"] } Hoping this will solve for this error message: error[E0599]: no function or associated item named `new_multi_thread` found for struct `tokio::runtime::Builder` in the current scope --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6deccd31..687de967 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ zip = "0.5.11" globset = "0.4.8" ubyte = "0.10.3" indicatif = "0.17.4" -tokio = "1.28.2" +tokio = { version = "1.28.2", features = ["rt-multi-thread"] } serial_test = "2.0.0" time = "=0.3.35"