assay-engine 0.5.7

Standalone workflow + auth + dashboard HTTP server on PostgreSQL 18 + SQLite. Embeddable as a library, or run as a binary.
Documentation
1
2
3
4
5
6
7
8
9
10
const _: () = assert!(
    cfg!(feature = "s3-archival"),
    "the published standalone engine must compile workflow archival support"
);

#[test]
fn standalone_default_build_includes_s3_archival() {
    let _: fn() -> Option<assay_workflow::archival::ArchivalConfig> =
        assay_workflow::archival::ArchivalConfig::from_env;
}