2021-04-30 17:56:16 +02:00
|
|
|
//! [Watchexec]: the library
|
2019-10-27 10:54:44 +01:00
|
|
|
//!
|
2021-04-30 17:56:16 +02:00
|
|
|
//! From version 1.16.0, semver applies!
|
2019-10-27 11:29:58 +01:00
|
|
|
//!
|
2021-04-30 17:56:16 +02:00
|
|
|
//! [Watchexec]: https://github.com/watchexec/watchexec
|
2019-10-27 10:54:44 +01:00
|
|
|
|
2021-07-20 10:32:38 +02:00
|
|
|
#![doc(html_favicon_url = "https://watchexec.github.io/logo:watchexec.svg")]
|
|
|
|
#![doc(html_logo_url = "https://watchexec.github.io/logo:watchexec.svg")]
|
2021-04-10 19:44:24 +02:00
|
|
|
#![warn(clippy::unwrap_used)]
|
2019-10-27 12:06:09 +01:00
|
|
|
|
2021-04-10 15:23:24 +02:00
|
|
|
pub mod config;
|
2018-09-08 13:51:44 +02:00
|
|
|
pub mod error;
|
2017-04-25 01:31:50 +02:00
|
|
|
mod gitignore;
|
2019-10-05 12:55:28 +02:00
|
|
|
mod ignore;
|
2017-04-25 01:31:50 +02:00
|
|
|
mod notification_filter;
|
2019-01-23 18:56:09 +01:00
|
|
|
pub mod pathop;
|
2021-07-21 13:37:24 +02:00
|
|
|
mod paths;
|
2017-04-25 01:31:50 +02:00
|
|
|
pub mod run;
|
2021-07-21 13:37:24 +02:00
|
|
|
mod shell;
|
2017-04-25 01:31:50 +02:00
|
|
|
mod signal;
|
|
|
|
mod watcher;
|
|
|
|
|
2019-10-28 06:56:06 +01:00
|
|
|
pub use run::{run, watch, Handler};
|
2021-07-21 13:37:24 +02:00
|
|
|
pub use shell::Shell;
|