operonx 0.6.2

High-performance Rust execution backend for Operon workflows
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Op base class, sentinels, and concrete op types.
//!
//! Mirrors Python `operonx/core/ops/`. Also contains `cache.rs` — a Rust-internal
//! utility (Python equivalent lives in the `cache` field on `BaseOp`, but the
//! implementation is Rust-only).

pub mod base;
pub mod cache;
pub mod edges;
pub mod flow;
pub mod graph;
pub mod params;
pub mod transform;