From 93f49265a6aca09ff689ee7eeee0253359369ade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 16 Oct 2020 19:39:50 +0200 Subject: [PATCH] crypto: Use a git version of sqlx. The beta release has a nasty bug where one thread would consume 100% of CPU. --- matrix_sdk_crypto/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/matrix_sdk_crypto/Cargo.toml b/matrix_sdk_crypto/Cargo.toml index cb882341..4e7ee157 100644 --- a/matrix_sdk_crypto/Cargo.toml +++ b/matrix_sdk_crypto/Cargo.toml @@ -52,7 +52,8 @@ default-features = false features = ["std", "std-future"] [target.'cfg(not(target_arch = "wasm32"))'.dependencies.sqlx] -version = "0.4.0-beta.1" +git = "https://github.com/launchbadge/sqlx/" +rev = "fd25a7530cf087e1529553ff854f192738db3461" optional = true default-features = false features = ["runtime-tokio", "sqlite", "macros"]