From f8a9bb1158c4fb7d05a5c43db640278e23074670 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Tue, 30 Sep 2025 11:13:10 +0300 Subject: [PATCH] core/storage: Remove unused import from encryption.rs --- core/storage/encryption.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/storage/encryption.rs b/core/storage/encryption.rs index 3adb2eb14..5cc129b35 100644 --- a/core/storage/encryption.rs +++ b/core/storage/encryption.rs @@ -1,5 +1,5 @@ #![allow(unused_variables, dead_code)] -use crate::{turso_assert, LimboError, Result}; +use crate::{LimboError, Result}; use aegis::aegis128l::Aegis128L; use aegis::aegis128x2::Aegis128X2; use aegis::aegis128x4::Aegis128X4; @@ -685,7 +685,7 @@ impl EncryptionContext { ); // since this is page 1, this must have header - turso_assert!( + crate::turso_assert!( page.starts_with(SQLITE_HEADER), "Page 1 must start with SQLite header" );