diff --git a/crates/matrix-sdk-sled/src/lib.rs b/crates/matrix-sdk-sled/src/lib.rs index b29af173a..831accd29 100644 --- a/crates/matrix-sdk-sled/src/lib.rs +++ b/crates/matrix-sdk-sled/src/lib.rs @@ -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. diff --git a/crates/matrix-sdk/src/store.rs b/crates/matrix-sdk/src/store.rs index d0873ed79..cf3610060 100644 --- a/crates/matrix-sdk/src/store.rs +++ b/crates/matrix-sdk/src/store.rs @@ -32,4 +32,4 @@ #[cfg(feature = "indexeddb")] pub use matrix_sdk_indexeddb::*; #[cfg(feature = "sled")] -pub use matrix_sdk_sled::*; \ No newline at end of file +pub use matrix_sdk_sled::*;