Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions crates/tinyflows/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
pub mod bindings;
pub mod caps;
pub mod catalog;
/// Topologies this engine's fan-in lowering cannot execute safely, refused
/// before a run rather than surfacing as dropped data or a hung barrier.
pub mod compat;
pub mod compiler;
pub mod data;
/// Reading a run's steps for the failures a green outcome hides: null bindings,
Expand Down Expand Up @@ -54,6 +57,14 @@ pub mod migrate;
pub mod model;
pub mod nodes;
pub mod observability;
/// Proving a graph's outbound arguments can resolve, by running it against
/// mocks before an author is allowed to save it.
///
/// Behind `mock` because that is where the schema-aware doubles it runs on
/// live — the check *is* a mock run, so there is nothing to compile without
/// them.
#[cfg(any(test, feature = "mock"))]
pub mod preflight;
/// Stored workflows and their run history: the durable model around a graph,
/// and a file-backed store for it. Behind the `store` feature.
#[cfg(any(test, feature = "store"))]
Expand Down
Loading