From c2f1e4de64abad3cd6b7c304b4d5d207161da24a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Sat, 20 Jun 2020 16:38:06 +0200 Subject: [PATCH] crypto: Disable a clippy warning. --- matrix_sdk_crypto/src/store/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/matrix_sdk_crypto/src/store/mod.rs b/matrix_sdk_crypto/src/store/mod.rs index 0c133447..7a690ce2 100644 --- a/matrix_sdk_crypto/src/store/mod.rs +++ b/matrix_sdk_crypto/src/store/mod.rs @@ -87,6 +87,7 @@ pub enum CryptoStoreError { pub type Result = std::result::Result; #[async_trait] +#[warn(clippy::type_complexity)] #[cfg_attr(not(target_arch = "wasm32"), send_sync)] /// Trait abstracting a store that the `OlmMachine` uses to store cryptographic /// keys.