From eb99081a9a6e594635db28676477ed5d994abbe5 Mon Sep 17 00:00:00 2001 From: Conrado Gouvea Date: Thu, 30 Sep 2021 19:19:36 -0300 Subject: [PATCH] Enable 'full' feature in tokio for zebra-test (#2809) --- zebra-test/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index c0809add..013e45a1 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -16,7 +16,7 @@ rand = "0.8" regex = "1.4.6" tower = { version = "0.4", features = ["util"] } -tokio = { version = "0.3", features = ["rt-multi-thread"] } +tokio = { version = "0.3", features = ["full"] } futures = "0.3.17" color-eyre = "0.5.11" @@ -30,4 +30,3 @@ tracing-error = "0.1.2" [dev-dependencies] tempdir = "0.3.7" -tokio = { version = "0.3.6", features = ["full"] }