jellyflow-runtime 0.2.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Node and port schema registry.

mod migration;
mod registry;
mod types;

pub use migration::{
    CanonicalizeKindsPlan, MigrateNodesPlan, MigrateNodesReport, NodeKindMigrateError,
    NodeKindMigrator, NodeKindRewrite, NodeMigrationErrorEntry, NodeMigrationMissingMigrator,
    NodeMigrationMissingSchema, NodeMigrationNewerThanSchema, NodeMigrationUpgraded,
};
pub use registry::NodeRegistry;
pub use types::{
    NodeInstantiation, NodeInstantiationError, NodeKindViewDescriptor, NodeSchema, PortDecl,
};

#[cfg(test)]
mod tests;