operonx 0.6.2

High-performance Rust execution backend for Operon workflows
1
2
3
4
5
6
7
8
9
10
11
12
//! State model — MemoryState, StateSchema, Ref, Cell.
//!
//! Mirrors Python `operonx/core/states/`.
//!
//! Note: Rust's `ref` is a reserved keyword. The file stays `ref.rs` (matching
//! Python's `ref.py`) but the module identifier is `ref_` — see §3a.7.

pub mod cell;
#[path = "ref.rs"]
pub mod ref_;
pub mod schema;
pub mod state;