fixing style

This commit is contained in:
Benjamin Kampmann
2022-04-20 15:25:56 +02:00
parent 3de9c54552
commit ae8943e050
2 changed files with 2 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
#[cfg(feature = "state-store")]
use matrix_sdk_base::store::{StoreError, StoreConfig};
use matrix_sdk_base::store::{StoreConfig, StoreError};
#[cfg(feature = "crypto-store")]
use matrix_sdk_crypto::store::CryptoStoreError;
use sled::Error as SledError;
@@ -35,7 +35,6 @@ pub enum OpenStoreError {
Sled(#[from] SledError),
}
// FIXME Move these two methods back to the matrix-sdk-sled crate once weak
// dependency features are stable and we decide to bump the MSRV.

View File

@@ -32,4 +32,4 @@
#[cfg(feature = "indexeddb")]
pub use matrix_sdk_indexeddb::*;
#[cfg(feature = "sled")]
pub use matrix_sdk_sled::*;
pub use matrix_sdk_sled::*;