From 4130e155e4574abf387f954a17c57c19a687dc37 Mon Sep 17 00:00:00 2001 From: Alexander Weiss Date: Fri, 13 Sep 2024 16:45:04 +0200 Subject: [PATCH] fix windows deps --- crates/core/src/repository/command_input.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/core/src/repository/command_input.rs b/crates/core/src/repository/command_input.rs index f890c2ff..90727dcd 100644 --- a/crates/core/src/repository/command_input.rs +++ b/crates/core/src/repository/command_input.rs @@ -6,9 +6,9 @@ use log::{debug, trace, warn}; use serde::{Deserialize, Serialize}; use serde_with::{serde_as, DisplayFromStr, PickFirst}; -use crate::RusticResult; #[cfg(not(windows))] -use crate::{error::RusticErrorKind, RusticError}; +use crate::error::RusticErrorKind; +use crate::{RusticError, RusticResult}; /// A command to be called which can be given as CLI option as well as in config files /// `CommandInput` implements Serialize/Deserialize as well as FromStr.