// The crate is fully documented and clippy runs with -D warnings in CI,
// so this makes "public API without docs" a build error from here on.
//! Graph compiler for Soma pipelines.
//!
//! Transforms a `Graph` of filter nodes into an [`ExecutionPlan`]:
//! - Topological ordering and parallelism detection
//! - Cache resolution (content-addressable, cascade invalidation)
//! - Schema validation between connected filters
//! - Distribution wrapping for remote execution
//! - the `Scheduler` assigns plan nodes to workers
pub use ;
pub use ExecutionPlan;
pub use ;