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