From aa2c0a2ec70f12ccb2b1e0488c8fe8479639ff62 Mon Sep 17 00:00:00 2001 From: CamZalewski Date: Wed, 20 May 2026 14:41:37 +0100 Subject: [PATCH] fix(kernels): drop removed std::simd::Select import `std::simd::Select` no longer exists in current nightly's portable_simd API; methods now hang off `Mask` inherently. The unused import was preventing the crate (and everything depending on it -- qroissant-arrow, qroissant-python) from building on a current nightly toolchain. --- crates/qroissant-kernels/src/temporal.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/qroissant-kernels/src/temporal.rs b/crates/qroissant-kernels/src/temporal.rs index 85c90a9..fbc0af8 100644 --- a/crates/qroissant-kernels/src/temporal.rs +++ b/crates/qroissant-kernels/src/temporal.rs @@ -8,7 +8,6 @@ //! Each transform function uses `portable_simd` for the aligned middle of the //! slice and falls back to a scalar loop for the head and tail. -use std::simd::Select; use std::simd::prelude::*; use crate::nulls::Q_NULL_DATE;