watchexec/crates/events/src/lib.rs

25 lines
320 B
Rust
Raw Normal View History

2023-03-18 11:23:46 +01:00
#![doc = include_str!("../README.md")]
2023-03-18 09:32:24 +01:00
#[doc(inline)]
pub use event::*;
#[doc(inline)]
pub use fs::*;
#[doc(inline)]
pub use keyboard::*;
#[doc(inline)]
pub use process::*;
mod event;
mod fs;
mod keyboard;
mod process;
#[cfg(not(feature = "notify"))]
mod sans_notify;
#[cfg(feature = "serde")]
mod serde_formats;