From a8d6909c569c14109f41f1431ade21205d49b7b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Sun, 29 Nov 2020 11:22:53 +0100 Subject: [PATCH] crypto: Use a released sqlx version. --- matrix_sdk_crypto/Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/matrix_sdk_crypto/Cargo.toml b/matrix_sdk_crypto/Cargo.toml index 927d104b..63353cb2 100644 --- a/matrix_sdk_crypto/Cargo.toml +++ b/matrix_sdk_crypto/Cargo.toml @@ -46,11 +46,10 @@ base64 = "0.13.0" byteorder = "1.3.4" [target.'cfg(not(target_arch = "wasm32"))'.dependencies.sqlx] -git = "https://github.com/launchbadge/sqlx/" -rev = "fd25a7530cf087e1529553ff854f192738db3461" +version = "0.4.1" optional = true default-features = false -features = ["runtime-tokio", "sqlite", "macros"] +features = ["runtime-tokio-native-tls", "sqlite", "macros"] [dev-dependencies] tokio = { version = "0.2.22", default-features = false, features = ["rt-threaded", "macros"] }