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)]