homestar-runtime 0.3.0

Homestar runtime implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Metadata related to [receipts].
//!
//! [receipts]: crate::Receipt

/// Metadata attributed to a boolean true/false value on whether
/// the computation was executed from scratch or not.
pub(crate) const REPLAYED_KEY: &str = "replayed";

/// Metadata key for a workflow Cid.
pub(crate) const WORKFLOW_KEY: &str = "workflow";

/// Associated metadata key for a workflow name, which
/// will either be some identifier, or the Cid of the workflow.
pub(crate) const WORKFLOW_NAME_KEY: &str = "name";