Skip to main content

ocel_etl/
lib.rs

1//! Generic ETL engine for OCEL 2.0 process mining.
2//!
3//! Connectors extract source data into a [`StagingLog`] — a loose working
4//! representation that tolerates out-of-order ingestion, dangling references,
5//! and growing schemas — and convert it into a validated [`ocel::Ocel`]
6//! through the single [`StagingLog::into_ocel`] gate.
7
8mod staging;
9
10pub use staging::{StagingEvent, StagingLog};