From 09684e3640925d381739c4e226a4768ee3dfa207 Mon Sep 17 00:00:00 2001 From: Fabian Wunsch Date: Wed, 27 Dec 2023 12:14:03 +0100 Subject: [PATCH] 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 5037bf7..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, num::SimdUint}; +use std::simd::{num::SimdUint, u32x8, Simd}; use std::sync::Arc; use tokio::io::AsyncWriteExt;