Skip to main content

ocel_transform/
lib.rs

1//! Recipe-driven OCEL 2.0 log transformation.
2//!
3//! A recipe is a declarative list of steps applied in order; the result is a
4//! new, valid OCEL log. Deterministic only: no step invents data, and every
5//! step reports what it changed.
6
7pub mod apply;
8pub mod recipe;
9
10pub use apply::{apply, preview, DroppedEvent, StepPreview, StepReport, TransformError};
11pub use recipe::{AliasTable, EventPredicate, Recipe, Step, TimeWindow};