4 releases
0.1.3 | Oct 24, 2022 |
---|---|
0.1.2 | Oct 24, 2022 |
0.1.1 | Oct 23, 2022 |
0.1.0 | Oct 23, 2022 |
#1226 in Asynchronous
34KB
862 lines
aNotify
Async Bindings for the iNotify api
This crate is still a work in progress! The core functionality is there, but it's not all there (and some claimed features are not currently functional), so I wouldn't recommend using it yet. I am open to bug reports though, so if you use it and find any don't hesitate to let me know!
extern crate anotify;
extern crate eyre;
let mut owner = anotify::new()
.wrap_err("Creating anotify instance")?;
let file_watch = owner.file(PathBuf::from("./readme.md"))?
.open(true)
.watch()?;
file_watch.await
.wrap_err("anoitfy closed before readme was opened")?;
let directory_watch = owner.dir(PathBuf::from("./src/"))?
.modify(true)
.watch()?;
while let Some(event) = directory_watch.next().await
.wrap_err("anotify closed before any directory events seen")? {
println!("Got: {event}");
}
lib.rs
:
Async file watches for tokio using iNotify
Dependencies
~4–12MB
~144K SLoC