crypto: Disable a clippy warning.

This commit is contained in:
Damir Jelić 2020-06-20 16:38:06 +02:00
parent 8a7c53c00d
commit c2f1e4de64

View file

@ -87,6 +87,7 @@ pub enum CryptoStoreError {
pub type Result<T> = std::result::Result<T, CryptoStoreError>;
#[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.