From 15f0f738a5ec85b984704fe919c24c7b95983ac2 Mon Sep 17 00:00:00 2001 From: Fabian Wunsch <42294590+fabi321@users.noreply.github.com> Date: Wed, 27 Dec 2023 13:05:51 +0100 Subject: [PATCH] updated imports as SimdUInt moved (#18) * updated imports as SimdUInt moved * make rustfmt happy --- src/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.rs b/src/parser.rs index 69377aa..31b502a 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -1,7 +1,7 @@ use crate::framebuffer::FrameBuffer; use const_format::formatcp; use log::{info, warn}; -use std::simd::{u32x8, Simd, SimdUint}; +use std::simd::{num::SimdUint, u32x8, Simd}; use std::sync::Arc; use tokio::io::AsyncWriteExt;