jellyflow-core 0.2.0

Headless graph model, IDs, type descriptors, and interaction policy primitives for Jellyflow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Deterministic graph fragments for clipboard, duplication, and merges.
//!
//! A fragment is a self-contained subset of a graph that can be serialized and pasted into another
//! graph by remapping IDs.

mod clipboard;
mod collect;
mod model;
mod paste;
mod remap;

pub use model::GraphFragment;
pub use paste::PasteTuning;
pub use remap::{IdRemapSeed, IdRemapper};