brainwires-system 0.8.1

Generic OS-level primitives — filesystem event watching and system service management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! File system event reactor — watch directories and trigger autonomous actions.
//!
//! Uses the `notify` crate for cross-platform file system watching with
//! debouncing and rate limiting to prevent event storms.

pub mod debounce;
pub mod fs_watcher;
pub mod rules;

pub use debounce::EventDebouncer;
pub use fs_watcher::FsReactor;
pub use rules::{FsEventType, ReactorAction, ReactorRule};