watchexec/lib/src/lib.rs

25 lines
535 B
Rust
Raw Normal View History

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
pub mod config;
pub mod error;
2017-04-25 01:31:50 +02:00
mod gitignore;
mod ignore;
2017-04-25 01:31:50 +02:00
mod notification_filter;
pub mod pathop;
mod paths;
2017-04-25 01:31:50 +02:00
pub mod run;
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};
pub use shell::Shell;