From 28035d9a2edcc21f2098f09a4304a2254ff9bc51 Mon Sep 17 00:00:00 2001 From: DocMarty84 Date: Tue, 18 Jul 2023 00:20:38 +0200 Subject: [PATCH] fix: remove unused platform specific usings (#55) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ba122ed..9d51326 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,7 +15,6 @@ use settings::Settings; use spotify::Spotify; use std::{ env, - os::windows::process, time::{Duration, Instant}, }; @@ -29,6 +28,7 @@ async fn main() { #[tokio::main] async fn main() { use colored::control; + use std::os::windows::process; //backwards compatibility. if control::set_virtual_terminal(true).is_ok() {};