style(indexeddb): cargo fmt

Signed-off-by: Michael Goldenberg <m@mgoldenberg.net>
This commit is contained in:
Michael Goldenberg
2025-05-02 10:19:53 -04:00
committed by Ivan Enderlin
parent f661b82f18
commit 8fd122c431
2 changed files with 10 additions and 6 deletions

View File

@@ -19,11 +19,13 @@ use indexed_db_futures::IdbQuerySource;
use wasm_bindgen::JsValue;
use web_sys::{DomException, IdbTransactionMode};
use crate::crypto_store::{
keys,
migrations::{do_schema_upgrade, old_keys, MigrationDb},
use crate::{
crypto_store::{
keys,
migrations::{do_schema_upgrade, old_keys, MigrationDb},
},
serializer::IndexeddbSerializer,
};
use crate::serializer::IndexeddbSerializer;
/// Migrate data from `backup_keys.backup_key_v1` to
/// `backup_keys.backup_version_v1`.

View File

@@ -47,8 +47,10 @@ use tracing::{debug, warn};
use wasm_bindgen::JsValue;
use web_sys::IdbKeyRange;
use crate::crypto_store::migrations::open_and_upgrade_db;
use crate::serializer::{IndexeddbSerializer, IndexeddbSerializerError, MaybeEncrypted};
use crate::{
crypto_store::migrations::open_and_upgrade_db,
serializer::{IndexeddbSerializer, IndexeddbSerializerError, MaybeEncrypted},
};
mod migrations;