From 83e1f67d0d27f414c54c50bd68612b1e828c1f16 Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Sat, 12 Aug 2023 14:33:25 +0200 Subject: [PATCH] fix: don't even look at it --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index fbadb1f..eaa325b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,10 +2,10 @@ mod http; #[cfg(windows)] use mslnk::ShellLink; use semver::Version; -#[cfg(not(windows))] -use std::thread; use std::time::{SystemTime, UNIX_EPOCH}; use std::{fs, path::PathBuf}; +#[cfg(not(windows))] +use std::{thread, time}; #[cfg(windows)] use steamlocate::SteamDir;