assay-workflow 0.4.0

Durable workflow engine with REST+SSE API on PostgreSQL 18 and SQLite backends. Embeddable library or standalone server (via assay-engine).
Documentation
pub mod activities;
pub mod api;
pub mod archival;
pub mod children;
pub mod ctx;
pub mod dispatch_recovery;
pub mod events;
pub mod events_cleanup;
pub mod health;
pub mod lifecycle;
pub mod namespaces;
pub mod scheduler;
pub mod schedules;
pub mod signals;
pub mod state;
pub mod store;
pub mod tasks;
pub mod timers;
pub mod workers;

// Types live in assay-domain; re-exported here so existing `crate::types::*`
// paths continue to resolve.
pub use assay_domain::types;

pub use ctx::WorkflowCtx;
pub use events::{WorkflowBusEvent, WorkflowEventBus};
pub use store::WorkflowStore;
pub use store::postgres::PostgresStore;
pub use store::sqlite::SqliteStore;