From df7895d2c66ec9c53bf8bfdc8628b752bc214807 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 4 Aug 2022 10:46:07 +0200 Subject: [PATCH] chore(indexeddb): Rename cryptostore => crypto_store MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … for consistency with state_store. --- .../src/{cryptostore.rs => crypto_store.rs} | 0 crates/matrix-sdk-indexeddb/src/lib.rs | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename crates/matrix-sdk-indexeddb/src/{cryptostore.rs => crypto_store.rs} (100%) diff --git a/crates/matrix-sdk-indexeddb/src/cryptostore.rs b/crates/matrix-sdk-indexeddb/src/crypto_store.rs similarity index 100% rename from crates/matrix-sdk-indexeddb/src/cryptostore.rs rename to crates/matrix-sdk-indexeddb/src/crypto_store.rs diff --git a/crates/matrix-sdk-indexeddb/src/lib.rs b/crates/matrix-sdk-indexeddb/src/lib.rs index 393688c42..c16b21c38 100644 --- a/crates/matrix-sdk-indexeddb/src/lib.rs +++ b/crates/matrix-sdk-indexeddb/src/lib.rs @@ -4,14 +4,14 @@ use matrix_sdk_base::store::{StoreConfig, StoreError}; use thiserror::Error; #[cfg(feature = "e2e-encryption")] -mod cryptostore; +mod crypto_store; mod safe_encode; mod state_store; #[cfg(feature = "e2e-encryption")] -pub use cryptostore::IndexeddbStore as CryptoStore; +pub use crypto_store::IndexeddbStore as CryptoStore; #[cfg(feature = "e2e-encryption")] -use cryptostore::IndexeddbStoreError; +use crypto_store::IndexeddbStoreError; pub use state_store::{ IndexeddbStore as StateStore, IndexeddbStoreBuilder as StateStoreBuilder, MigrationConflictStrategy,