//! 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
//! - [`Scheduler`] assigns plan nodes to workers
pub use ;
pub use ExecutionPlan;
pub use ;