yah-tower 0.8.20

yah-tower — rule-driven monitor on scryer. Rule parser/compiler, ScryerFilter, and dispatch engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! yah-tower — rule-driven monitor on scryer (Phase 2).
//!
//! This crate holds the rule engine: compiling `TowerRule` predicates to
//! `ScryerFilter` shapes, parsing rules from YAML/JSON, and validating rules
//! before they are loaded. The supervisor (F3), dispatch engine (F4), and
//! trigger families (F5) will live here too when those tickets land.
//!
//! Architecture: `.yah/docs/architecture/A052-yah-tower.md`

pub mod dispatch;
pub mod event;
pub mod rules;
pub mod scryer_filter;
pub mod simulate;
pub mod storage;
pub mod supervisor;
pub mod triggers;