summarylogtreecommitdiffstats
path: root/0005-fix-encoding_rs.patch
blob: b5e858f46427529b54619d16c0e8f09aebe12819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From dc06d71cb14390433bcd5a78975cbe7a29e47333 Mon Sep 17 00:00:00 2001
From: any1here <225423344+any1here@users.noreply.github.com>
Date: Sat, 18 Apr 2026 00:27:06 +0200
Subject: [PATCH] Add missing Select trait import for Rust 1.95

---
 src/x_user_defined.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/x_user_defined.rs b/src/x_user_defined.rs
index cd87b9a..421f303 100644
--- a/src/x_user_defined.rs
+++ b/src/x_user_defined.rs
@@ -16,6 +16,7 @@ cfg_if! {
         use simd_funcs::*;
         use core::simd::u16x8;
         use core::simd::cmp::SimdPartialOrd;
+        use core::simd::Select;
 
         #[inline(always)]
         fn shift_upper(unpacked: u16x8) -> u16x8 {