From 032c55e77f281e5e010ce1c0e4888f1d23cbd5f5 Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Thu, 12 Aug 2021 02:04:09 -0600 Subject: [PATCH] tokio: the test-util feature depends on rt, sync, and time (#4036) Fixes #4035 --- tokio/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index d37f33ded..dcbbcc357 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -82,7 +82,7 @@ signal = [ "winapi/consoleapi", ] sync = [] -test-util = [] +test-util = ["rt", "sync", "time"] time = [] [dependencies]