From 09f4b07fb7aa3fae6117b1f7b7fc079f39754de0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Tue, 6 Oct 2020 15:17:45 +0200 Subject: [PATCH] matrix-sdk: Use a specific version for async-std. --- matrix_sdk/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix_sdk/Cargo.toml b/matrix_sdk/Cargo.toml index 645c4a25..46372aa4 100644 --- a/matrix_sdk/Cargo.toml +++ b/matrix_sdk/Cargo.toml @@ -68,7 +68,7 @@ features = ["wasm-bindgen"] [dev-dependencies] async-trait = "0.1.40" -async-std = { version = "*", features = ["unstable"] } +async-std = { version = "1.6.5", features = ["unstable"] } dirs = "3.0.1" matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" } tokio = { version = "0.2.22", features = ["rt-threaded", "macros"] }