From 4a1cfd0db39d27d9ec28e9dea281cf42e3369608 Mon Sep 17 00:00:00 2001 From: rUv Date: Fri, 26 Dec 2025 21:49:33 +0000 Subject: [PATCH] fix(postgres): Revert lib.rs formatting to match main MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keep comment on separate line to match main branch format and avoid merge conflict in CI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- crates/ruvector-postgres/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/ruvector-postgres/src/lib.rs b/crates/ruvector-postgres/src/lib.rs index 30f64e26f..7925cb4ca 100644 --- a/crates/ruvector-postgres/src/lib.rs +++ b/crates/ruvector-postgres/src/lib.rs @@ -7,7 +7,8 @@ #![allow(unexpected_cfgs)] // pgrx macros (pg12/pg13) and optional features (tokio) #![allow(dead_code)] // Stub implementations and future features #![allow(unused_variables)] // WIP function signatures -#![allow(unused_mut)] // Variables prepared for future mutation +#![allow(unused_mut)] +// Variables prepared for future mutation // Allow clippy lints common in pgrx extensions and WIP code #![allow(clippy::all)] // Allow all clippy warnings for development #![allow(for_loops_over_fallibles)] // pgrx derive macro generates this pattern