scientific-workflow 0.2.4

Typed scientific states, project configuration, artifacts, and durable recording
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Execution scope management for scientific workflows.
//!
//! `ExecutionScope` centralizes filesystem scope creation for one project
//! execution and all task recordings.

mod error;
mod scope;

pub use error::ExecutionScopeError;
pub use scope::ExecutionScope;