harn-vm 0.7.23

Async bytecode virtual machine for the Harn programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Workflow graph manipulation and execution builtins.

mod artifact;
mod convert;
mod guards;
mod map;
mod policy;
mod register;
mod stage;
mod usage;

pub(in crate::stdlib) use self::artifact::load_run_tree;
pub(in crate::stdlib) use self::register::execute_workflow;
pub(crate) use self::register::register_workflow_builtins;

#[cfg(test)]
mod tests;