From bf6e1b594db2d8f3739a18ea14664a35511abb71 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Thu, 21 Jul 2022 18:06:48 +0200 Subject: [PATCH] fix(integration-tests): requires multi-threading feature from tokio --- testing/matrix-sdk-integration-testing/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/matrix-sdk-integration-testing/Cargo.toml b/testing/matrix-sdk-integration-testing/Cargo.toml index 5f2e37145..b592f1802 100644 --- a/testing/matrix-sdk-integration-testing/Cargo.toml +++ b/testing/matrix-sdk-integration-testing/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dev-dependencies] matrix-sdk = { path = "../../crates/matrix-sdk" } -tokio = { version = "1", features = ["rt", "macros"] } +tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] } tempfile = "3.3.0" anyhow = "1" lazy_static = "1.4"