really-notify 0.1.0

For when you really, really just want to know that your config changed
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(all(
    feature = "notify",
    not(all(feature = "inotify", target_family = "unix"))
))]
mod notify;
#[cfg(all(
    feature = "notify",
    not(all(feature = "inotify", target_family = "unix"))
))]
pub(crate) use self::notify::*;

#[cfg(all(feature = "inotify", target_family = "unix"))]
mod inotify;
#[cfg(all(feature = "inotify", target_family = "unix"))]
pub(crate) use inotify::*;