jellyflow-runtime 0.2.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub(super) fn temp_path(name: &str) -> std::path::PathBuf {
    std::env::temp_dir().join(format!(
        "jellyflow-conformance-{name}-{}.json",
        uuid::Uuid::new_v4()
    ))
}

pub(super) fn temp_dir(name: &str) -> std::path::PathBuf {
    std::env::temp_dir().join(format!(
        "jellyflow-conformance-{name}-{}",
        uuid::Uuid::new_v4()
    ))
}