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!
```rust 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()?;
filewatch.await .wraperr("anoitfy closed before readme was opened")?;
let directory_watch = owner.dir(PathBuf::from("./src/"))? .modify(true) .watch()?;
while let Some(event) = directorywatch.next().await .wraperr("anotify closed before any directory events seen")? { println!("Got: {event}"); } ```