Skip to content

Commit

Permalink
build: fixed unused import warning in fsmon.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
pamburus committed Dec 17, 2024
1 parent 393013d commit e9781bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fsmon.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// std imports
use std::{path::PathBuf, time::Duration};
use std::path::PathBuf;

// local imports
use crate::error::Result;
Expand Down Expand Up @@ -89,7 +89,7 @@ mod imp {

#[cfg(target_os = "macos")]
mod imp {
use std::collections::HashSet;
use std::{collections::HashSet, time::Duration};

use kqueue::{EventData, EventFilter, FilterFlag, Ident, Vnode, Watcher};
use notify::event::{CreateKind, DataChange, MetadataKind, ModifyKind, RemoveKind, RenameMode};
Expand Down

0 comments on commit e9781bc

Please sign in to comment.