wrkflw-models

Crates.iowrkflw-models
lib.rswrkflw-models
version0.7.3
created_at2025-08-09 12:19:46.248644+00
updated_at2025-08-28 07:31:44.393869+00
descriptionData models and structures for wrkflw workflow execution engine
homepagehttps://github.com/bahdotsh/wrkflw
repositoryhttps://github.com/bahdotsh/wrkflw
max_upload_size
id1787879
size17,771
Gokul (bahdotsh)

documentation

https://github.com/bahdotsh/wrkflw

README

wrkflw-models

Common data structures shared across crates.

  • ValidationResult for structural/semantic checks
  • GitLab pipeline models (serde types)

Example

use wrkflw_models::ValidationResult;

let mut res = ValidationResult::new();
res.add_issue("missing jobs".into());
assert!(!res.is_valid);
Commit count: 183

cargo fmt