From be4641bdadbd722b4f9f46d859ed00d2bfde9d06 Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Sun, 23 Feb 2025 08:33:11 +0100 Subject: [PATCH] readd path import for windows --- src/misc.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/misc.rs b/src/misc.rs index e2f6965..b37f989 100644 --- a/src/misc.rs +++ b/src/misc.rs @@ -1,4 +1,6 @@ use std::fs; +#[cfg(windows)] +use std::path::Path; use indicatif::{ProgressBar, ProgressStyle};