greentic-flow 0.5.8

Generic YGTC flow schema/loader/IR for self-describing component nodes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct ArtifactKey {
    pub engine_profile_id: String,
    pub wasm_digest: String,
}

impl ArtifactKey {
    pub fn new(engine_profile_id: String, wasm_digest: String) -> Self {
        Self {
            engine_profile_id,
            wasm_digest,
        }
    }
}