We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5457bb5 commit 7ccd355Copy full SHA for 7ccd355
crates/common/tedge_utils/src/notify.rs
@@ -4,7 +4,7 @@ use notify::event::AccessMode;
4
use notify::event::CreateKind;
5
use notify::event::RemoveKind;
6
use notify::EventKind;
7
-use notify::INotifyWatcher;
+use notify::RecommendedWatcher;
8
use notify::RecursiveMode;
9
use notify::Watcher;
10
use notify_debouncer_full as debouncer;
@@ -65,7 +65,7 @@ pub enum NotifyStreamError {
65
}
66
67
pub struct NotifyStream {
68
- debouncer: debouncer::Debouncer<INotifyWatcher, debouncer::NoCache>,
+ debouncer: debouncer::Debouncer<RecommendedWatcher, debouncer::NoCache>,
69
pub rx: Receiver<(PathBuf, FsEvent)>,
70
71
0 commit comments