watchexec/src/lib.rs

31 lines
449 B
Rust
Raw Normal View History

2017-04-25 01:31:50 +02:00
#[macro_use]
extern crate clap;
extern crate globset;
extern crate env_logger;
#[macro_use]
extern crate log;
#[macro_use]
extern crate lazy_static;
extern crate notify;
#[cfg(unix)]
extern crate nix;
#[cfg(windows)]
extern crate winapi;
#[cfg(windows)]
extern crate kernel32;
#[cfg(test)]
extern crate mktemp;
pub mod cli;
mod gitignore;
mod notification_filter;
mod process;
pub mod run;
mod signal;
mod watcher;
mod pathop;
2017-04-25 01:31:50 +02:00
pub use run::run;