Files
honey-biscuit-workshop/workshop-schedule/src/lib.rs
T
Catty Steve 26809df720 feat(bake): DAG scheduler, decorator execution, notify refactor, workshop-schedule crate
- Add workshop-schedule crate (petgraph-based DAG scheduling)
- Implement all bake decorators with combinator chain execution
- Refactor notify module: extract handler, rule, template, util, queue
- Add NotificationQueue with priority/drain semantics
- Enhance finalize plugin system with internal plugin registration
- Update ExecutionContext and event types
- Add per-crate AGENTS.md knowledge base files
- Remove inline AGENTS.md files (consolidated into per-crate docs)
2026-06-15 20:45:06 +08:00

10 lines
200 B
Rust

// Code in this module PARTIALLY or FULLY utilized AI Coding Agent
pub mod dag;
pub mod edge;
pub mod node;
pub use dag::{Dag, DagError};
pub use edge::EdgeKind;
pub use node::{DagNode, NodeColor};