iwatchr 0.1.0

Cross-platform CLI file watcher that re-runs a command on every file change
Documentation
1
2
3
4
5
6
7
8
9
10
// Catch unsupported build targets at compile time with a human-readable message.
#[cfg(not(any(unix, windows)))]
compile_error!(
    "iwatchr only supports Unix-like systems (Linux, macOS) and Windows. \
     The current target is not recognised."
);

pub mod cli;
pub mod runner;
pub mod watcher;