From 40fb9a94005c64e0490527cf913e21704b4fa503 Mon Sep 17 00:00:00 2001 From: Bruno Dutra Date: Sat, 31 Jan 2026 18:42:28 +0100 Subject: [PATCH] fix build after latest nightly breaking changes see rust-lang/portable-simd#485 --- lib/simd/powi.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/simd/powi.rs b/lib/simd/powi.rs index 3c652aac..1e8e7da3 100644 --- a/lib/simd/powi.rs +++ b/lib/simd/powi.rs @@ -1,5 +1,5 @@ use std::ops::MulAssign; -use std::simd::{LaneCount, SimdElement, SupportedLaneCount, prelude::*}; +use std::simd::{SimdElement, prelude::*}; /// Trait for [`Simd<_, _>` ] types that implement `powi`. pub trait Powi { @@ -10,7 +10,6 @@ pub trait Powi { impl Powi for Simd where T: SimdElement + From, - LaneCount: SupportedLaneCount, Self: MulAssign, { #[inline(always)]