watchexec_events/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(not(test), warn(unused_crate_dependencies))]
3
4#[doc(inline)]
5pub use event::*;
6
7#[doc(inline)]
8pub use fs::*;
9
10#[doc(inline)]
11pub use keyboard::*;
12
13#[doc(inline)]
14pub use process::*;
15
16mod event;
17mod fs;
18mod keyboard;
19mod process;
20
21#[cfg(not(feature = "notify"))]
22mod sans_notify;
23
24#[cfg(feature = "serde")]
25mod serde_formats;