Skip to content

Commit 5a758d7

Browse files
author
Roland Peelen
committed
Fix build
1 parent 7615e9e commit 5a758d7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/watcher.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ use futures::{
55
SinkExt, StreamExt,
66
};
77
use notify::{Config, Event, RecommendedWatcher, RecursiveMode, Watcher};
8-
use std::path::Path;
8+
use std::path::PathBuf;
9+
use std::thread;
10+
use std::time::Duration;
911
pub static FILE_TYPES: &[&str] = &["re", "res", "ml", "rei", "resi", "mli"];
1012

1113
fn async_watcher() -> notify::Result<(RecommendedWatcher, Receiver<notify::Result<Event>>)> {

0 commit comments

Comments
 (0)