#![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",
);
}
}
}