watchexec 8.2.0

Library to execute commands in response to file modifications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Error types for critical, runtime, and specialised errors.

#[doc(inline)]
pub use critical::*;
#[doc(inline)]
pub use runtime::*;
#[doc(inline)]
pub use specialised::*;

mod critical;
mod runtime;
mod specialised;