diff --git a/crates/ruvector-postgres/benches/distance_bench.rs b/crates/ruvector-postgres/benches/distance_bench.rs index bf539da1b..21082626a 100644 --- a/crates/ruvector-postgres/benches/distance_bench.rs +++ b/crates/ruvector-postgres/benches/distance_bench.rs @@ -1,3 +1,5 @@ +#![allow(dead_code, unused_imports, unused_variables)] + //! Comprehensive distance function benchmarks //! //! Compare SIMD vs scalar implementations across different vector sizes diff --git a/crates/ruvector-postgres/benches/e2e_bench.rs b/crates/ruvector-postgres/benches/e2e_bench.rs index e7ed15337..be4993cfa 100644 --- a/crates/ruvector-postgres/benches/e2e_bench.rs +++ b/crates/ruvector-postgres/benches/e2e_bench.rs @@ -1,3 +1,5 @@ +#![allow(dead_code, unused_imports, unused_variables)] + //! End-to-End benchmarks for RuVector PostgreSQL extension //! //! Comprehensive benchmarks for: diff --git a/crates/ruvector-postgres/benches/hybrid_bench.rs b/crates/ruvector-postgres/benches/hybrid_bench.rs index fa37b0c74..0cf79f044 100644 --- a/crates/ruvector-postgres/benches/hybrid_bench.rs +++ b/crates/ruvector-postgres/benches/hybrid_bench.rs @@ -1,3 +1,5 @@ +#![allow(dead_code, unused_imports, unused_variables)] + //! Hybrid search benchmarks //! //! Benchmarks for combining vector search with keyword/BM25 scoring: diff --git a/crates/ruvector-postgres/benches/integrity_bench.rs b/crates/ruvector-postgres/benches/integrity_bench.rs index 9720d0068..0d4f9370e 100644 --- a/crates/ruvector-postgres/benches/integrity_bench.rs +++ b/crates/ruvector-postgres/benches/integrity_bench.rs @@ -1,3 +1,5 @@ +#![allow(dead_code, unused_imports, unused_variables)] + //! Index integrity and graph maintenance benchmarks //! //! Benchmarks for v2 structural integrity features: diff --git a/crates/ruvector-postgres/benches/quantization_bench.rs b/crates/ruvector-postgres/benches/quantization_bench.rs index d72ee0d7f..0c2955c89 100644 --- a/crates/ruvector-postgres/benches/quantization_bench.rs +++ b/crates/ruvector-postgres/benches/quantization_bench.rs @@ -1,3 +1,5 @@ +#![allow(dead_code, unused_imports, unused_variables)] + //! Comprehensive quantization benchmarks //! //! Compares exact vs quantized search with different quantization methods diff --git a/crates/ruvector-postgres/benches/quantized_distance_bench.rs b/crates/ruvector-postgres/benches/quantized_distance_bench.rs index ab3e4e6b8..9bdbf5eed 100644 --- a/crates/ruvector-postgres/benches/quantized_distance_bench.rs +++ b/crates/ruvector-postgres/benches/quantized_distance_bench.rs @@ -1,3 +1,5 @@ +#![allow(dead_code, unused_imports, unused_variables)] + //! Benchmarks for quantized vector distance calculations //! //! Compares scalar vs SIMD implementations for all quantized types