From 78d7f6c10b66dd45b84db23bfaa20d1a6604c6b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Wed, 21 Oct 2020 17:05:36 +0200 Subject: [PATCH] crypto: Fix a clippy issue. --- matrix_sdk_crypto/src/store/sqlite.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix_sdk_crypto/src/store/sqlite.rs b/matrix_sdk_crypto/src/store/sqlite.rs index c2cbcf80..d2d8d77e 100644 --- a/matrix_sdk_crypto/src/store/sqlite.rs +++ b/matrix_sdk_crypto/src/store/sqlite.rs @@ -49,7 +49,7 @@ use crate::{ /// This needs to be 32 bytes long since AES-GCM requires it, otherwise we will /// panic once we try to pickle a Signing object. -const DEFAULT_PICKLE: &'static str = "DEFAULT_PICKLE_PASSPHRASE_123456"; +const DEFAULT_PICKLE: &str = "DEFAULT_PICKLE_PASSPHRASE_123456"; /// SQLite based implementation of a `CryptoStore`. #[derive(Clone)]