Skip to content

Commit

Permalink
fix windows deps
Browse files Browse the repository at this point in the history
  • Loading branch information
aawsome committed Sep 13, 2024
1 parent 703ea62 commit 4130e15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core/src/repository/command_input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 4130e15

Please sign in to comment.