jellyflow-runtime 0.2.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
//! Headless runtime, rules, schema, and profile pipeline for Jellyflow.
//!
//! This crate owns the portable B-layer store and change pipeline built on top of
//! `jellyflow-core` graph transactions. It must stay free of Fret UI, renderer, platform, and
//! windowing dependencies.
//!
//! Public API shape:
//! - crate-root re-exports are the canonical runtime entry points,
//! - [`io`] owns persisted files and editor configuration,
//! - [`runtime::xyflow`] is an explicit compatibility adapter, not the primary store contract.

#![deny(unsafe_code)]

mod node_origin;

pub mod io;
pub mod profile;
pub mod rules;
pub mod runtime;
pub mod schema;

pub use profile::{
    ApplyPipelineError, GraphProfile, apply_connect_plan_with_profile,
    apply_transaction_with_profile,
};
pub use runtime::commit::NodeGraphPatch;
pub use runtime::store::{DispatchError, DispatchOutcome, NodeGraphStore};

#[cfg(test)]
mod tests {
    #[test]
    fn manifest_stays_free_of_fret_ui_renderer_and_platform_dependencies() {
        let manifest = include_str!("../Cargo.toml");
        for forbidden in [
            "fret-core",
            "fret-ui",
            "fret-runtime",
            "fret-canvas",
            "wgpu",
            "winit",
        ] {
            assert!(
                !manifest.contains(forbidden),
                "jellyflow-runtime must stay headless; forbidden dependency `{forbidden}` found",
            );
        }
    }
}